diff options
author | Jakub Senko <jakubsenko@gmail.com> | 2018-10-18 13:01:29 +0200 |
---|---|---|
committer | Jakub Senko <jakubsenko@gmail.com> | 2018-10-18 18:50:17 +0200 |
commit | 175ffa869be0d353156e2e332136f63ade30a043 (patch) | |
tree | 4a818e6e1f177817d86ae70f8e8c3a421dc4a963 /phpBB/phpbb/notification/method/board.php | |
parent | 7e003bf687b340bba822fc512bfb2b2c8235a6ad (diff) | |
download | forums-175ffa869be0d353156e2e332136f63ade30a043.tar forums-175ffa869be0d353156e2e332136f63ade30a043.tar.gz forums-175ffa869be0d353156e2e332136f63ade30a043.tar.bz2 forums-175ffa869be0d353156e2e332136f63ade30a043.tar.xz forums-175ffa869be0d353156e2e332136f63ade30a043.zip |
[ticket/15850] Fix "Duplicate entry" for notification types
PHPBB3-15850
Diffstat (limited to 'phpBB/phpbb/notification/method/board.php')
-rw-r--r-- | phpBB/phpbb/notification/method/board.php | 2 |
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); } } |