aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-03-24 16:33:15 +0100
committerMarc Alexander <admin@m-a-styles.de>2016-03-24 16:33:15 +0100
commitd817da60493957417acc8c2bd314a88ae367b447 (patch)
tree8273997ed7203f155cf2733f8efbf611b2379633 /phpBB/phpbb
parented21921c58c678844e39db87f0c487ce07acf8ab (diff)
parent933938a1d8452f2aa1ac833ab00db58aac67a8e6 (diff)
downloadforums-d817da60493957417acc8c2bd314a88ae367b447.tar
forums-d817da60493957417acc8c2bd314a88ae367b447.tar.gz
forums-d817da60493957417acc8c2bd314a88ae367b447.tar.bz2
forums-d817da60493957417acc8c2bd314a88ae367b447.tar.xz
forums-d817da60493957417acc8c2bd314a88ae367b447.zip
Merge pull request #4227 from Senky/ticket/14318
[ticket/14318] Fix SQL error in Notifications Board migration
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/db/migration/data/v320/notifications_board.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/migration/data/v320/notifications_board.php b/phpBB/phpbb/db/migration/data/v320/notifications_board.php
index 8a76ebab58..ac1b3a0f2c 100644
--- a/phpBB/phpbb/db/migration/data/v320/notifications_board.php
+++ b/phpBB/phpbb/db/migration/data/v320/notifications_board.php
@@ -34,7 +34,7 @@ class notifications_board extends \phpbb\db\migration\migration
public function update_module()
{
$sql = 'UPDATE ' . MODULES_TABLE . "
- SET auth = 'cfg_allow_board_notifications'
+ SET module_auth = 'cfg_allow_board_notifications'
WHERE module_basename = 'ucp_notifications'
AND module_mode = 'notification_list'";
$this->sql_query($sql);