Marc check this.
[squirrelmail.git] / plugins / administrator / auth.php
index 1f8826b437c7189a168e089bc1c5acfbbc396250..2271582c7aac3abbc613a4cce4c22788f8f83c14 100644 (file)
@@ -12,18 +12,24 @@ function adm_check_user() {
 
     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 );
+    } 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 {
+        $auth = FALSE;
+    }
 
     return( $auth );
 
 }
 
-?>
\ No newline at end of file
+?>