mirror of
https://codeberg.org/icewind/SMB.git
synced 2026-06-03 17:24:07 +02:00
Fixes incorrect explode() parameters usage.
This commit is contained in:
parent
545a95443a
commit
ba1bd316d3
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ class NativeServer extends Server {
|
|||
$user = $this->getUser();
|
||||
$workgroup = null;
|
||||
if (strpos($user, '/')) {
|
||||
list($workgroup, $user) = explode($user, '/');
|
||||
list($workgroup, $user) = explode('/', $user);
|
||||
}
|
||||
$this->state->init($workgroup, $user, $this->getPassword());
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue