From 27f915f305a2fc02ca33c34ceeb7c9ae3e119e99 Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Mon, 8 Jan 2007 21:14:49 +0000 Subject: - 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 --- phpBB/includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/includes/functions.php') 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 = '' . $user->lang['PAGINATION_SEPERATOR'] . ''; $total_pages = ceil($num_items/$per_page); if ($total_pages == 1 || !$num_items) -- cgit v1.2.1