aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/info/acp_styles.php
diff options
context:
space:
mode:
authorGraham Eames <grahamje@users.sourceforge.net>2006-05-01 19:45:42 +0000
committerGraham Eames <grahamje@users.sourceforge.net>2006-05-01 19:45:42 +0000
commit14adf393c26dc47444d3b18b5030c293e890986a (patch)
tree590e78792fcaf57f5166596a0ea2c5c0b547cb8e /phpBB/includes/acp/info/acp_styles.php
parent6724e1bab6ec2faf13fc104751ba63cbb293dae4 (diff)
downloadforums-14adf393c26dc47444d3b18b5030c293e890986a.tar
forums-14adf393c26dc47444d3b18b5030c293e890986a.tar.gz
forums-14adf393c26dc47444d3b18b5030c293e890986a.tar.bz2
forums-14adf393c26dc47444d3b18b5030c293e890986a.tar.xz
forums-14adf393c26dc47444d3b18b5030c293e890986a.zip
Remove the module entries from the schema data file and generate the list instead
This should be the last major item with hard-coded id values in it git-svn-id: file:///svn/phpbb/trunk@5873 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/info/acp_styles.php')
-rw-r--r--phpBB/includes/acp/info/acp_styles.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/acp/info/acp_styles.php b/phpBB/includes/acp/info/acp_styles.php
index e2df12ff4f..3df02828b3 100644
--- a/phpBB/includes/acp/info/acp_styles.php
+++ b/phpBB/includes/acp/info/acp_styles.php
@@ -20,10 +20,10 @@ class acp_styles_info
'title' => 'ACP_CAT_STYLES',
'version' => '1.0.0',
'modes' => array(
- 'style' => array('title' => 'ACP_STYLES', 'auth' => 'acl_a_styles'),
- 'template' => array('title' => 'ACP_TEMPLATES', 'auth' => 'acl_a_styles'),
- 'theme' => array('title' => 'ACP_THEMES', 'auth' => 'acl_a_styles'),
- 'imageset' => array('title' => 'ACP_IMAGESETS', 'auth' => 'acl_a_styles'),
+ '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')),
+ 'imageset' => array('title' => 'ACP_IMAGESETS', 'auth' => 'acl_a_styles', 'cat' => array('ACP_STYLE_COMPONENTS')),
),
);
}