diff options
author | Andreas Fischer <bantu@phpbb.com> | 2012-10-29 15:13:33 -0400 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2012-10-29 15:13:33 -0400 |
commit | 88b100d818940340e660c9f372526b1b5466bf3a (patch) | |
tree | 98125d2b2017cdd55c3a035160c74bb71d7c317b /phpBB/install/database_update.php | |
parent | c84268d2f9a758a3bcc570acc60c01e1185eeb14 (diff) | |
parent | 5f5d395c625fe0257e7bca5d787424808f7649cc (diff) | |
download | forums-88b100d818940340e660c9f372526b1b5466bf3a.tar forums-88b100d818940340e660c9f372526b1b5466bf3a.tar.gz forums-88b100d818940340e660c9f372526b1b5466bf3a.tar.bz2 forums-88b100d818940340e660c9f372526b1b5466bf3a.tar.xz forums-88b100d818940340e660c9f372526b1b5466bf3a.zip |
Merge remote-tracking branch 'p/ticket/11158' into develop-olympus
* p/ticket/11158:
[ticket/11158] Require acl_u_sig for ucp signature module.
[ticket/11158] Revert old fix in PHPBB3-10186.
Diffstat (limited to 'phpBB/install/database_update.php')
-rw-r--r-- | phpBB/install/database_update.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 40837145ba..099ab6aeb5 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -1005,6 +1005,8 @@ function database_update_info() ), // No changes from 3.0.11-RC2 to 3.0.11 '3.0.11-RC2' => array(), + // No changes from 3.0.11 to 3.0.12-RC1 + '3.0.11' => array(), /** @todo DROP LOGIN_ATTEMPT_TABLE.attempt_id in 3.0.12-RC1 */ ); @@ -2108,6 +2110,16 @@ function change_database_data(&$no_updates, $version) // No changes from 3.0.11-RC2 to 3.0.11 case '3.0.11-RC2': break; + + // Changes from 3.0.11 to 3.0.12-RC1 + case '3.0.11': + $sql = 'UPDATE ' . MODULES_TABLE . ' + SET module_auth = \'acl_u_sig\' + WHERE module_class = \'ucp\' + AND module_basename = \'profile\' + AND module_mode = \'signature\''; + _sql($sql, $errored, $error_ary); + break; } } |