git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2366
7612ce4b-ef26-0410-bec9-
ea0150e637f0
+/*
+ * 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, $PHP_SELF;
+ if ( substr( $PHP_SELF, -11 ) <> 'options.php' ) {
-
- 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'] );