From 6a4c01cdc319c3bfdebbb54a80127f597345ed8a Mon Sep 17 00:00:00 2001 From: Jonathan Stanley Date: Sat, 27 Jan 2007 17:21:20 +0000 Subject: SEPARATOR, not SEPERATOR... also "neutralised" variable naming as it's used elsewhere outside of pagination. :) git-svn-id: file:///svn/phpbb/trunk@6940 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 5aadb5017e..ff514e7ec5 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -1288,7 +1288,7 @@ function generate_pagination($base_url, $num_items, $per_page, $start_item, $add // Make sure $per_page is a valid value $per_page = ($per_page <= 0) ? 1 : $per_page; - $seperator = '' . $user->lang['PAGINATION_SEPERATOR'] . ''; + $seperator = '' . $user->lang['COMMA_SEPARATOR'] . ''; $total_pages = ceil($num_items / $per_page); if ($total_pages == 1 || !$num_items) -- cgit v1.2.1