diff options
author | Vjacheslav Trushkin <arty@phpbb.com> | 2012-03-31 18:53:49 +0300 |
---|---|---|
committer | Vjacheslav Trushkin <arty@phpbb.com> | 2012-03-31 18:53:49 +0300 |
commit | 550ee7309a1d83711e4b9cf4abe3468807d84996 (patch) | |
tree | fa9a5b0fe9bafd86a2d8f2ba326e9cf66b33ffa7 | |
parent | 1be5bd8e1311a9dd859e6e685cdfa5979adf69a4 (diff) | |
download | forums-550ee7309a1d83711e4b9cf4abe3468807d84996.tar forums-550ee7309a1d83711e4b9cf4abe3468807d84996.tar.gz forums-550ee7309a1d83711e4b9cf4abe3468807d84996.tar.bz2 forums-550ee7309a1d83711e4b9cf4abe3468807d84996.tar.xz forums-550ee7309a1d83711e4b9cf4abe3468807d84996.zip |
[feature/merging-style-components] Fixing typos in database updater
Yes, I failed... again. Fixing 2 more typos in database_update.php
PHPBB3-10632
-rw-r--r-- | phpBB/install/database_update.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 3235731d28..583574a245 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -2281,14 +2281,14 @@ function change_database_data(&$no_updates, $version) 'cat' => 'ACP_STYLE_MANAGEMENT', ), 'edit' => array( - 'base' => 'acp_styles' + 'base' => 'acp_styles', 'class' => 'acp', 'title' => 'ACP_STYLES_EDIT', 'auth' => 'acl_a_styles', 'cat' => 'ACP_STYLE_MANAGEMENT', ), 'cache' => array( - 'base' => 'acp_styles' + 'base' => 'acp_styles', 'class' => 'acp', 'title' => 'ACP_STYLES_CACHE', 'auth' => 'acl_a_styles', |