Optimization
authorphilippe_mingo <philippe_mingo@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 5 Feb 2002 12:51:21 +0000 (12:51 +0000)
committerphilippe_mingo <philippe_mingo@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 5 Feb 2002 12:51:21 +0000 (12:51 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2366 7612ce4b-ef26-0410-bec9-ea0150e637f0

plugins/administrator/auth.php

index 517d70e010da327b0cda30ec0f09cc8cde04624c..a40852dc862dec28595b500f6f52be9c07fc42d2 100644 (file)
@@ -1,19 +1,25 @@
 <?php
 
 <?php
 
+/*
+ *  This function tell other modules what users have access
+ *  to the plugin.
+ *  
+ *  Philippe Mingo
+ *  
+ *  $Id$
+ */
 function adm_check_user() {
 
 function adm_check_user() {
 
-    GLOBAL $username;
+    GLOBAL $username, $PHP_SELF;
 
 
+    if ( substr( $PHP_SELF, -11 ) <> 'options.php' ) {
     $auth = FALSE;
     $auth = FALSE;
-    
-    if ( file_exists( '../plugins/administrator/admins' ) ) {
+    } else if ( file_exists( '../plugins/administrator/admins' ) ) {
         $auths = file( '../plugins/administrator/admins' );
         $auth = in_array( "$username\n", $auths );
         $auths = file( '../plugins/administrator/admins' );
         $auth = in_array( "$username\n", $auths );
-    }else if ( $adm_id = fileowner('../config/config.php') ) {
+    } else if ( $adm_id = fileowner('../config/config.php') ) {
         $adm = posix_getpwuid( $adm_id );
         $adm = posix_getpwuid( $adm_id );
-        if ( $username == $adm['name'] ) {
-            $auth = TRUE;
-        } 
+        $auth = ( $username == $adm['name'] );
     }
 
     return( $auth );
     }
 
     return( $auth );