diff options
author | rub <rub@piwigo.org> | 2007-04-07 22:31:37 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-04-07 22:31:37 +0000 |
commit | 60febd633ab269ce95a809d388a65b6099e43aff (patch) | |
tree | 14fbf2202d3b2e4edaae10654f807c275d5e1d81 /password.php | |
parent | a5f440fb5c7eb760eb77750131438e8384ad541e (diff) |
Issue 674:
Administrator can ask a new password
Add message about users witch can change their password
git-svn-id: http://piwigo.org/svn/trunk@1947 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | password.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/password.php b/password.php index c0fe3b2e9..42715e864 100644 --- a/password.php +++ b/password.php @@ -71,7 +71,7 @@ FROM '.USERS_TABLE.' as u ON u.'.$conf['user_fields']['id'].' = ui.user_id WHERE ' .$conf['user_fields']['email'].' = \''.$mail_address.'\' AND - ui.status not in (\'guest\', \'generic\', \'webmaster\') + ui.status not in (\'guest\', \'generic\', \'admin\', \'webmaster\') ;'; $result = pwg_query($query); @@ -132,6 +132,7 @@ WHERE ' else { array_push($page['errors'], l10n('No user matches this email address')); + array_push($page['errors'], l10n('Administrator, webmaster and special user cannot use this method')); array_push($page['errors'], $mailto); } } |