aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.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/functions.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/functions.php')
-rw-r--r--phpBB/includes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index e4abcc6cc7..8054870554 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -1285,7 +1285,7 @@ function generate_pagination($base_url, $num_items, $per_page, $start_item, $add
{
global $template, $user;
- $seperator = $user->theme['pagination_sep'];
+ $seperator = '<span class="page-sep">' . $user->lang['PAGINATION_SEPERATOR'] . '</span>';
$total_pages = ceil($num_items/$per_page);
if ($total_pages == 1 || !$num_items)