philippe_mingo 23 роки тому
батько
коміт
583ac22682
1 змінених файлів з 5 додано та 2 видалено
  1. 5 2
      plugins/administrator/auth.php

+ 5 - 2
plugins/administrator/auth.php

@@ -12,11 +12,14 @@ 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'] );
@@ -26,4 +29,4 @@ function adm_check_user() {
 
 }
 
-?>
+?>