diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-05-12 20:52:58 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-05-12 20:52:58 +0000 |
commit | a8d99f2228cc042c8410553f5f3ec375148552f5 (patch) | |
tree | 11ccbd184cbc222775a08852d633d74ced7b2695 /phpBB/includes/acp/acp_styles.php | |
parent | 7dd067bf5a532e4c30908cca24449274a4863326 (diff) | |
download | forums-a8d99f2228cc042c8410553f5f3ec375148552f5.tar forums-a8d99f2228cc042c8410553f5f3ec375148552f5.tar.gz forums-a8d99f2228cc042c8410553f5f3ec375148552f5.tar.bz2 forums-a8d99f2228cc042c8410553f5f3ec375148552f5.tar.xz forums-a8d99f2228cc042c8410553f5f3ec375148552f5.zip |
- introduce new function build_url to easily build a valid url from the user->page object as well as optionally removing certain keys
- changed attachment config to utilize the config build methods
- cleaned up posting.php
- the submit/delete_post functions are now usable (functions_posting.php)
- adjusted header icons (transparency)
- a bunch of fixes for mssql
- bug fixes
git-svn-id: file:///svn/phpbb/trunk@5902 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_styles.php')
-rw-r--r-- | phpBB/includes/acp/acp_styles.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/includes/acp/acp_styles.php b/phpBB/includes/acp/acp_styles.php index 77e834821c..55efad44ad 100644 --- a/phpBB/includes/acp/acp_styles.php +++ b/phpBB/includes/acp/acp_styles.php @@ -31,6 +31,9 @@ class acp_styles global $db, $user, $auth, $template; global $config, $SID, $phpbb_root_path, $phpbb_admin_path, $phpEx; + // Hardcoded template bitfield to add for new templates + define('TEMPLATE_BITFIELD', 6921); + $user->add_lang('acp/styles'); $this->tpl_name = 'acp_styles'; @@ -2216,7 +2219,9 @@ pagination_sep = \'{PAGINATION_SEP}\' switch ($mode) { case 'template': + // We set a pre-defined bitfield here which we may use further in 3.2 $sql_ary += array( + 'bbcode_bitfield' => TEMPLATE_BITFIELD, $mode . '_storedb' => (!is_writeable("{$phpbb_root_path}styles/$path/$mode")) ? 1 : 0 ); break; |