Bugfix
authorphilippe_mingo <philippe_mingo@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 6 Feb 2002 10:56:25 +0000 (10:56 +0000)
committerphilippe_mingo <philippe_mingo@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 6 Feb 2002 10:56:25 +0000 (10:56 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2372 7612ce4b-ef26-0410-bec9-ea0150e637f0

plugins/administrator/auth.php

index 1f8826b437c7189a168e089bc1c5acfbbc396250..ce90d21e0b3249980a49385090e6f663aaf5843b 100644 (file)
@@ -12,11 +12,14 @@ function adm_check_user() {
 
     GLOBAL $username, $PHP_SELF;
 
 
     GLOBAL $username, $PHP_SELF;
 
-    if ( substr( $PHP_SELF, -11 ) <> 'options.php' ) {
+    if ( strpos( 'options.php', $PHP_SELF ) ) {
         $auth = FALSE;
     } else if ( file_exists( '../plugins/administrator/admins' ) ) {
         $auths = file( '../plugins/administrator/admins' );
         $auth = in_array( "$username\n", $auths );
         $auth = FALSE;
     } else if ( file_exists( '../plugins/administrator/admins' ) ) {
         $auths = file( '../plugins/administrator/admins' );
         $auth = in_array( "$username\n", $auths );
+    } else if ( file_exists( '../config/admins' ) ) {
+        $auths = file( '../config/admins' );
+        $auth = in_array( "$username\n", $auths );
     } else if ( $adm_id = fileowner('../config/config.php') ) {
         $adm = posix_getpwuid( $adm_id );
         $auth = ( $username == $adm['name'] );
     } else if ( $adm_id = fileowner('../config/config.php') ) {
         $adm = posix_getpwuid( $adm_id );
         $auth = ( $username == $adm['name'] );
@@ -26,4 +29,4 @@ function adm_check_user() {
 
 }
 
 
 }
 
-?>
\ No newline at end of file
+?>