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
This commit is contained in:
rub
2007-04-07 22:31:37 +00:00
parent a5f440fb5c
commit 60febd633a
3 changed files with 6 additions and 3 deletions

View File

@@ -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);
}
}