mirror of
https://codeberg.org/icewind/SMB.git
synced 2026-06-04 01:34:07 +02:00
fix php5.3 compat
This commit is contained in:
parent
33ab10cc4d
commit
2fc9501826
1 changed files with 1 additions and 1 deletions
|
|
@ -68,7 +68,7 @@ class Server {
|
||||||
} elseif (strpos($user, '\\')) {
|
} elseif (strpos($user, '\\')) {
|
||||||
return explode('\\', $user);
|
return explode('\\', $user);
|
||||||
} else {
|
} else {
|
||||||
return [null, $user];
|
return array(null, $user);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue