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