|
@@ -12,11 +12,14 @@ function adm_check_user() {
|
|
|
|
|
|
GLOBAL $username, $PHP_SELF;
|
|
GLOBAL $username, $PHP_SELF;
|
|
|
|
|
|
- if ( substr( $PHP_SELF, -11 ) <> 'options.php' ) {
|
|
|
|
|
|
+ if ( strpos( 'options.php', $PHP_SELF ) ) {
|
|
$auth = FALSE;
|
|
$auth = FALSE;
|
|
} else if ( file_exists( '../plugins/administrator/admins' ) ) {
|
|
} else if ( file_exists( '../plugins/administrator/admins' ) ) {
|
|
$auths = file( '../plugins/administrator/admins' );
|
|
$auths = file( '../plugins/administrator/admins' );
|
|
$auth = in_array( "$username\n", $auths );
|
|
$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 ( $adm_id = fileowner('../config/config.php') ) {
|
|
$adm = posix_getpwuid( $adm_id );
|
|
$adm = posix_getpwuid( $adm_id );
|
|
$auth = ( $username == $adm['name'] );
|
|
$auth = ( $username == $adm['name'] );
|
|
@@ -26,4 +29,4 @@ function adm_check_user() {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
-?>
|
|
|
|
|
|
+?>
|