aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db
diff options
context:
space:
mode:
authorJakub Senko <jakubsenko@gmail.com>2016-03-18 10:34:32 +0100
committerJakub Senko <jakubsenko@gmail.com>2016-03-18 11:04:01 +0100
commit933938a1d8452f2aa1ac833ab00db58aac67a8e6 (patch)
tree3e4e4cefc9e50059ce823b38916be2eff960b931 /phpBB/phpbb/db
parenteca4726f3c2fda312b3150b7b252a300d4603fbe (diff)
downloadforums-933938a1d8452f2aa1ac833ab00db58aac67a8e6.tar
forums-933938a1d8452f2aa1ac833ab00db58aac67a8e6.tar.gz
forums-933938a1d8452f2aa1ac833ab00db58aac67a8e6.tar.bz2
forums-933938a1d8452f2aa1ac833ab00db58aac67a8e6.tar.xz
forums-933938a1d8452f2aa1ac833ab00db58aac67a8e6.zip
[ticket/14318] Fix SQL error in Notifications Board migration
PHPBB3-14318
Diffstat (limited to 'phpBB/phpbb/db')
-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);