Updated comment

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2023-02-28 23:37:30 -08:00
parent 4860440306
commit 562546a853

View file

@ -115,7 +115,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
// This *should* be an array, but we've seen this return a bool in some chrooted environments
if (is_array($owner)) {
$start_settings['owner'] = $owner['name'];
}