fixed incorrect test. $adm_id was getting value of fileowner && function_exists
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 27 Jan 2005 12:44:19 +0000 (12:44 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 27 Jan 2005 12:44:19 +0000 (12:44 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@8712 7612ce4b-ef26-0410-bec9-ea0150e637f0

plugins/administrator/auth.php

index 138390a7b9f059605b7a77aa02f0efb6bd95057f..d356fec3f38ada7eddaa68cdb3dbd6406929ccc3 100644 (file)
@@ -36,7 +36,7 @@ function adm_check_user() {
     } 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']);