git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@8146
7612ce4b-ef26-0410-bec9-
ea0150e637f0
} else if (file_exists(SM_PATH . 'config/admins')) {
$auths = file(SM_PATH . 'config/admins');
$auth = in_array("$username\n", $auths);
- } else if ($adm_id = fileowner(SM_PATH . 'config/config.php')) {
+ } else if ($adm_id = fileowner(SM_PATH . 'config/config.php') &&
+ function_exists('posix_getpwuid')) {
$adm = posix_getpwuid( $adm_id );
$auth = ($username == $adm['name']);
} else {