aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/acp_styles.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2007-01-08 21:14:49 +0000
committerNils Adermann <naderman@naderman.de>2007-01-08 21:14:49 +0000
commit27f915f305a2fc02ca33c34ceeb7c9ae3e119e99 (patch)
tree5c275493f3c3655e4197db803e1b10b54a1585c5 /phpBB/includes/acp/acp_styles.php
parent4be13298039b84d74040e5b4b3dfddc3b311dbd1 (diff)
downloadforums-27f915f305a2fc02ca33c34ceeb7c9ae3e119e99.tar
forums-27f915f305a2fc02ca33c34ceeb7c9ae3e119e99.tar.gz
forums-27f915f305a2fc02ca33c34ceeb7c9ae3e119e99.tar.bz2
forums-27f915f305a2fc02ca33c34ceeb7c9ae3e119e99.tar.xz
forums-27f915f305a2fc02ca33c34ceeb7c9ae3e119e99.zip
- new homographs or IDN confusables ( http://www.unicode.org/reports/tr39/data/international.txt )
- also added character names to old homographs - pagination_sep theme option removed, PAGINATION_SEPERATOR can be set in language files and the theme can overwrite it using span.page-sep [Bug #6872] git-svn-id: file:///svn/phpbb/trunk@6862 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_styles.php')
-rw-r--r--phpBB/includes/acp/acp_styles.php12
1 files changed, 1 insertions, 11 deletions
diff --git a/phpBB/includes/acp/acp_styles.php b/phpBB/includes/acp/acp_styles.php
index 2ec7e7095b..29d38a4c19 100644
--- a/phpBB/includes/acp/acp_styles.php
+++ b/phpBB/includes/acp/acp_styles.php
@@ -82,11 +82,6 @@ version = {VERSION}
# images within your css file.
#
parse_css_file = {PARSE_CSS_FILE}
-
-#
-# This option defines the pagination seperator in templates.
-#
-pagination_sep = \'{PAGINATION_SEP}\'
';
$this->imageset_keys = array(
@@ -1812,12 +1807,7 @@ pagination_sep = \'{PAGINATION_SEP}\'
$items['parse_css_file'] = 'off';
}
- if (!isset($items['pagination_sep']))
- {
- $items['pagination_sep'] = ', ';
- }
-
- $theme_cfg = str_replace(array('{PARSE_CSS_FILE}', '{PAGINATION_SEP}'), array($items['parse_css_file'], $items['pagination_sep']), $theme_cfg);
+ $theme_cfg = str_replace(array('{PARSE_CSS_FILE}'), array($items['parse_css_file']), $theme_cfg);
$files[] = array(
'src' => "styles/{$style_row['theme_path']}/theme/",