summaryrefslogtreecommitdiff
path: root/inc/confutils.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/confutils.php')
-rw-r--r--inc/confutils.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/inc/confutils.php b/inc/confutils.php
index 7850682ba..0c1c0c64a 100644
--- a/inc/confutils.php
+++ b/inc/confutils.php
@@ -241,6 +241,7 @@ function actionOK($action){
static $disabled = null;
if(is_null($disabled)){
global $conf;
+ global $auth;
// prepare disabled actions array and handle legacy options
$disabled = explode(',',$conf['disableactions']);
@@ -250,6 +251,12 @@ function actionOK($action){
if(isset($conf['subscribers']) && !$conf['subscribers']) {
$disabled[] = 'subscribe';
}
+ if (is_null($auth) || !$auth->canDo('addUser')) {
+ $disabled[] = 'register';
+ }
+ if (is_null($auth) || !$auth->canDo('modPass')) {
+ $disabled[] = 'resendpwd';
+ }
$disabled = array_unique($disabled);
}