diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2005-12-22 16:28:27 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2005-12-22 16:28:27 +0000 |
commit | 60d218245c0986cd35d9fc8ea2fab7f5f32a9e38 (patch) | |
tree | b3e801e8a08805aef6eca2f8b2d08e147858c653 /phpBB/adm/index.php | |
parent | 088ed2c414bc0ebca59b486c1d44614fa6ff6456 (diff) | |
download | forums-60d218245c0986cd35d9fc8ea2fab7f5f32a9e38.tar forums-60d218245c0986cd35d9fc8ea2fab7f5f32a9e38.tar.gz forums-60d218245c0986cd35d9fc8ea2fab7f5f32a9e38.tar.bz2 forums-60d218245c0986cd35d9fc8ea2fab7f5f32a9e38.tar.xz forums-60d218245c0986cd35d9fc8ea2fab7f5f32a9e38.zip |
- ok, get away with the secondary style approach (styles can be mixed together easily with the acp)
- introduce a more generic approach of defining some additional variables through cfg files as well as the name, copyright and version fields
- please note that at the moment this is in flux. I added it now for Tom because he needs the theme parameters.
git-svn-id: file:///svn/phpbb/trunk@5372 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/index.php')
-rw-r--r-- | phpBB/adm/index.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/adm/index.php b/phpBB/adm/index.php index a5a3dad145..21beb63b11 100644 --- a/phpBB/adm/index.php +++ b/phpBB/adm/index.php @@ -53,7 +53,8 @@ $file_uploads = (@ini_get('file_uploads') || strtolower(@ini_get('file_uploads' $module_id = request_var('i', ''); $mode = request_var('mode', ''); -$user->theme['primary']['pagination_sep'] = ''; +// Force pagination seperation for admin style +$user->theme['pagination_sep'] = ''; // Set custom template for admin area $template->set_custom_template($phpbb_admin_path . 'style', 'admin'); |