Blah.
authorthomppj <thomppj@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 21 Oct 2002 23:01:06 +0000 (23:01 +0000)
committerthomppj <thomppj@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Mon, 21 Oct 2002 23:01:06 +0000 (23:01 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3925 7612ce4b-ef26-0410-bec9-ea0150e637f0

plugins/administrator/auth.php
plugins/administrator/setup.php

index 2271582c7aac3abbc613a4cce4c22788f8f83c14..4026aaf666a87bd1f0d42631288262d988ebdc80 100644 (file)
@@ -8,28 +8,26 @@
  *  
  *  $Id$
  */
  *  
  *  $Id$
  */
-function adm_check_user() {
 
 
+function adm_check_user() {
     GLOBAL $username, $PHP_SELF;
 
     GLOBAL $username, $PHP_SELF;
 
-    if ( strpos( 'options.php', $PHP_SELF ) ) {
+    if (strpos('options.php', $PHP_SELF)) {
         $auth = FALSE;
         $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') ) {
+    } else if (file_exists(SM_PATH . 'plugins/administrator/admins')) {
+        $auths = file(SM_PATH . 'plugins/administrator/admins');
+        $auth = in_array("$username\n", $auths);
+    } else if (file_exists(SM_PATH . 'config/admins')) {
+        $auths = file(SM_PATH . 'config/admins');
+        $auth = in_array("$username\n", $auths);
+    } else if ($adm_id = fileowner(SM_PATH . 'config/config.php')) {
         $adm = posix_getpwuid( $adm_id );
         $adm = posix_getpwuid( $adm_id );
-        $auth = ( $username == $adm['name'] );
-    }
-    else {
+        $auth = ($username == $adm['name']);
+    } else {
         $auth = FALSE;
     }
 
         $auth = FALSE;
     }
 
-    return( $auth );
-
+    return ($auth);
 }
 
 ?>
 }
 
 ?>
index 45b0c875eea8e22f619c9ebc33ebe49befa02287..98a99b96a3a76e80c13a8147b139a7c14a9890a6 100644 (file)
@@ -11,7 +11,7 @@
  * $Id$
  */
 
  * $Id$
  */
 
-require_once('../plugins/administrator/auth.php');
+require_once(SM_PATH . 'plugins/administrator/auth.php');
 
 function squirrelmail_plugin_init_administrator() {
     global $squirrelmail_plugin_hooks, $username;
 
 function squirrelmail_plugin_init_administrator() {
     global $squirrelmail_plugin_hooks, $username;
@@ -33,4 +33,4 @@ function squirrelmail_administrator_optpage_register_block() {
         'js'   => false
     );
 }
         'js'   => false
     );
 }
-?>
\ No newline at end of file
+?>