aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/notification/method
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2018-10-27 22:26:29 +0200
committerMarc Alexander <admin@m-a-styles.de>2018-10-27 22:26:29 +0200
commit042f47fc3f2e33bbb9791b0dc66b7ea6ccaa8d94 (patch)
treea58e33275c93365ad0edafeb5c0a703bea88f3ea /phpBB/phpbb/notification/method
parentfd95355c6129043e09d189c193ff5d1abde8db96 (diff)
parent175ffa869be0d353156e2e332136f63ade30a043 (diff)
downloadforums-042f47fc3f2e33bbb9791b0dc66b7ea6ccaa8d94.tar
forums-042f47fc3f2e33bbb9791b0dc66b7ea6ccaa8d94.tar.gz
forums-042f47fc3f2e33bbb9791b0dc66b7ea6ccaa8d94.tar.bz2
forums-042f47fc3f2e33bbb9791b0dc66b7ea6ccaa8d94.tar.xz
forums-042f47fc3f2e33bbb9791b0dc66b7ea6ccaa8d94.zip
Merge pull request #5420 from senky/ticket/15850
[ticket/15850] Fix "Duplicate entry" for notification types
Diffstat (limited to 'phpBB/phpbb/notification/method')
-rw-r--r--phpBB/phpbb/notification/method/board.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/notification/method/board.php b/phpBB/phpbb/notification/method/board.php
index 931b252daa..faa53576e0 100644
--- a/phpBB/phpbb/notification/method/board.php
+++ b/phpBB/phpbb/notification/method/board.php
@@ -394,6 +394,6 @@ class board extends \phpbb\notification\method\base
WHERE notification_type_id = ' . (int) $notification_type_id;
$this->db->sql_query($sql);
- $this->cache->destroy('notification_type_ids');
+ $this->cache->destroy('sql', $this->notification_types_table);
}
}