There was a problem when passing arrays to the decode header. From
[squirrelmail.git] / plugins / administrator / auth.php
index eb6bd740c2641e2e67239671be107827859be3dd..1f8826b437c7189a168e089bc1c5acfbbc396250 100644 (file)
@@ -1,15 +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;
 
-    $auth = FALSE;
-    if ( $adm_id = fileowner('../config/config.php') ) {
+    if ( substr( $PHP_SELF, -11 ) <> 'options.php' ) {
+        $auth = FALSE;
+    } 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') ) {
         $adm = posix_getpwuid( $adm_id );
-        if ( $username == $adm['name'] ) {
-            $auth = TRUE;
-        } 
+        $auth = ( $username == $adm['name'] );
     }
 
     return( $auth );