mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[ticket/11103] Bug fix
PHPBB3-11103
This commit is contained in:
parent
a4ec7e2aea
commit
661dd09d6f
3 changed files with 2 additions and 3 deletions
|
@ -718,7 +718,7 @@ function delete_topics($where_type, $where_ids, $auto_sync = true, $post_count_s
|
|||
|
||||
// Delete notifications
|
||||
$phpbb_notifications = $phpbb_container->get('notifications');
|
||||
$phpbb_notifications->delete_notifications(array('topic', 'approve_topic', 'topic_in_queue')), $topic_ids);
|
||||
$phpbb_notifications->delete_notifications(array('topic', 'approve_topic', 'topic_in_queue'), $topic_ids);
|
||||
|
||||
return $return;
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@ Subject: Topic reply notification - "{TOPIC_TITLE}"
|
|||
|
||||
Hello {USERNAME},
|
||||
|
||||
You are receiving this notification because the topic , "{TOPIC_TITLE}" at "{SITENAME}" needs approval.
|
||||
You are receiving this notification because the topic, "{TOPIC_TITLE}" at "{SITENAME}" needs approval.
|
||||
|
||||
If you want to view the topic, click the following link:
|
||||
{U_VIEW_TOPIC}
|
||||
|
|
|
@ -669,7 +669,6 @@ p.rules a {
|
|||
#notification_list ul li img {
|
||||
float: left;
|
||||
padding: 0 10px 10px 0;
|
||||
|
||||
max-width: 50px;
|
||||
max-height: 50px;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue