diff options
author | Cesar G <prototech91@gmail.com> | 2013-10-26 01:01:08 -0700 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2013-10-26 01:01:08 -0700 |
commit | c5fc8c43cbca82d2a064859828950477cfd5d767 (patch) | |
tree | 1dae9a1bc8fc851fad08ed2666aa62cad760384d /phpBB/includes/ucp | |
parent | d607f1c927ed6fb54d6c46eb13b5bcd4133f8cfc (diff) | |
download | forums-c5fc8c43cbca82d2a064859828950477cfd5d767.tar forums-c5fc8c43cbca82d2a064859828950477cfd5d767.tar.gz forums-c5fc8c43cbca82d2a064859828950477cfd5d767.tar.bz2 forums-c5fc8c43cbca82d2a064859828950477cfd5d767.tar.xz forums-c5fc8c43cbca82d2a064859828950477cfd5d767.zip |
[ticket/11746] Delete the notification after user is approved & fix language.
PHPBB3-11746
Diffstat (limited to 'phpBB/includes/ucp')
-rw-r--r-- | phpBB/includes/ucp/ucp_activate.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/ucp/ucp_activate.php b/phpBB/includes/ucp/ucp_activate.php index 6af0154334..2a94acbe02 100644 --- a/phpBB/includes/ucp/ucp_activate.php +++ b/phpBB/includes/ucp/ucp_activate.php @@ -109,7 +109,7 @@ class ucp_activate if ($config['require_activation'] == USER_ACTIVATION_ADMIN && !$update_password) { $phpbb_notifications = $phpbb_container->get('notification_manager'); - $phpbb_notifications->mark_notifications_read('admin_activate_user', $user_row['user_id'], false); + $phpbb_notifications->delete_notifications('admin_activate_user', $user_row['user_id']); include_once($phpbb_root_path . 'includes/functions_messenger.' . $phpEx); |