diff options
author | plegall <plg@piwigo.org> | 2016-01-04 19:54:40 +0100 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2016-01-04 19:54:40 +0100 |
commit | 67e142f33197af955e179a1ad09b990ac80b6698 (patch) | |
tree | 914d524eb8f5ac3f92703e1f8790f74682d57bdf /admin/include | |
parent | f2f9e5ecb7d6c16332aaccf8bc7b1c4248e6e889 (diff) |
feature #392, add authentication key in NBM mails
There are many links in NBM (Notification By Mail, see screen
[Administration > Users > Notification]). I had to change several
functions to take this authentication key into account.
Diffstat (limited to 'admin/include')
-rw-r--r-- | admin/include/functions_notification_by_mail.inc.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/admin/include/functions_notification_by_mail.inc.php b/admin/include/functions_notification_by_mail.inc.php index 8d0fe2621..7dc113b0f 100644 --- a/admin/include/functions_notification_by_mail.inc.php +++ b/admin/include/functions_notification_by_mail.inc.php @@ -125,12 +125,12 @@ select U.'.$conf['user_fields']['username'].' as username, U.'.$conf['user_fields']['email'].' as mail_address, N.enabled, - N.last_send -from - '.USER_MAIL_NOTIFICATION_TABLE.' as N, - '.USERS_TABLE.' as U -where - N.user_id = U.'.$conf['user_fields']['id']; + N.last_send, + UI.status +from '.USER_MAIL_NOTIFICATION_TABLE.' as N + JOIN '.USERS_TABLE.' as U on N.user_id = U.'.$conf['user_fields']['id'].' + JOIN '.USER_INFOS_TABLE.' as UI on UI.user_id = N.user_id +where 1=1'; if ($action == 'send') { @@ -159,7 +159,7 @@ order by'; else { $query .= ' - username;'; + username'; } $query .= ';'; |