diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/auth.php | 1 | ||||
-rw-r--r-- | inc/html.php | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/inc/auth.php b/inc/auth.php index ddc4007cf..7ae0da1a4 100644 --- a/inc/auth.php +++ b/inc/auth.php @@ -541,6 +541,7 @@ function act_resendpwd(){ global $auth; if(!$_POST['save']) return false; + if(!$conf['resendpasswd']) return false; // should not be able to get here without modifyUser being possible... if(!$auth->canDo('modifyUser')) { diff --git a/inc/html.php b/inc/html.php index 9b12ddbd1..e53dcbaf6 100644 --- a/inc/html.php +++ b/inc/html.php @@ -80,7 +80,7 @@ function html_login(){ print '</p>'; } - if ($auth->canDo('modifyUser')) { + if ($auth->canDo('modifyUser') && $conf['resendpasswd']) { print '<p>'; print $lang['pwdforget']; print ': <a href="'.wl($ID,'do=resendpwd').'" class="wikilink1">'.$lang['btn_resendpwd'].'</a>'; |