mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Check that it’s an array (versus checking that it’s not a bool)
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
b72a9cc6fd
commit
4860440306
|
@ -116,7 +116,7 @@ class SettingsController extends Controller
|
|||
if (function_exists('posix_getpwuid')) { // Probably Linux
|
||||
$owner = posix_getpwuid(fileowner($_SERVER['SCRIPT_FILENAME']));
|
||||
// This *shouldn't* be boolean, but we've seen this in come chrooted environments
|
||||
if (!is_bool($owner)) {
|
||||
if (is_array($owner)) {
|
||||
$start_settings['owner'] = $owner['name'];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue