diff options
author | Vjacheslav Trushkin <arty@phpbb.com> | 2012-03-14 23:47:57 +0200 |
---|---|---|
committer | Vjacheslav Trushkin <arty@phpbb.com> | 2012-03-14 23:47:57 +0200 |
commit | e35a20f957342a320a7c11b0cee1b94025848813 (patch) | |
tree | 9b9a1eef90b172a7c94eb58f87be892ce62db7ce /phpBB/includes/acp/info | |
parent | 0c6955e73c72d69c91548bb0c3106e39ce166b70 (diff) | |
download | forums-e35a20f957342a320a7c11b0cee1b94025848813.tar forums-e35a20f957342a320a7c11b0cee1b94025848813.tar.gz forums-e35a20f957342a320a7c11b0cee1b94025848813.tar.bz2 forums-e35a20f957342a320a7c11b0cee1b94025848813.tar.xz forums-e35a20f957342a320a7c11b0cee1b94025848813.zip |
[feature/merging-style-components] New acp_styles
New acp_styles, completely rewritten
PHPBB3-10632
Diffstat (limited to 'phpBB/includes/acp/info')
-rw-r--r-- | phpBB/includes/acp/info/acp_styles.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/acp/info/acp_styles.php b/phpBB/includes/acp/info/acp_styles.php index 221371c4cb..3137c4781b 100644 --- a/phpBB/includes/acp/info/acp_styles.php +++ b/phpBB/includes/acp/info/acp_styles.php @@ -17,11 +17,11 @@ class acp_styles_info return array( 'filename' => 'acp_styles', 'title' => 'ACP_CAT_STYLES', - 'version' => '1.0.0', + 'version' => '2.0.0', 'modes' => array( 'style' => array('title' => 'ACP_STYLES', 'auth' => 'acl_a_styles', 'cat' => array('ACP_STYLE_MANAGEMENT')), - 'template' => array('title' => 'ACP_TEMPLATES', 'auth' => 'acl_a_styles', 'cat' => array('ACP_STYLE_COMPONENTS')), - 'theme' => array('title' => 'ACP_THEMES', 'auth' => 'acl_a_styles', 'cat' => array('ACP_STYLE_COMPONENTS')), + 'install' => array('title' => 'ACP_STYLES_INSTALL', 'auth' => 'acl_a_styles', 'cat' => array('ACP_STYLE_MANAGEMENT')), + 'cache' => array('title' => 'ACP_STYLES_CACHE', 'auth' => 'acl_a_styles', 'cat' => array('ACP_STYLE_MANAGEMENT')), ), ); } |