Преглед изворни кода

Fix test that was never working, and was further confused by the change to the PAGE_NAME paradigm

pdontthink пре 17 година
родитељ
комит
43907d78b3
1 измењених фајлова са 3 додато и 1 уклоњено
  1. 3 1
      plugins/administrator/auth.php

+ 3 - 1
plugins/administrator/auth.php

@@ -32,7 +32,9 @@ function adm_check_user() {
     }
     }
 
 
     /* This needs to be first, for all non_options pages */
     /* This needs to be first, for all non_options pages */
-    if (defined('PAGE_NAME') && PAGE_NAME=='administrator_options') {
+    //if (!defined('PAGE_NAME') || strpos(PAGE_NAME, 'options') === FALSE) {
+    if (!defined('PAGE_NAME') 
+     || (PAGE_NAME != 'administrator_options' && PAGE_NAME != 'options')) {
         $auth = FALSE;
         $auth = FALSE;
     } else if (file_exists(SM_PATH . 'plugins/administrator/admins')) {
     } else if (file_exists(SM_PATH . 'plugins/administrator/admins')) {
         $auths = file(SM_PATH . 'plugins/administrator/admins');
         $auths = file(SM_PATH . 'plugins/administrator/admins');