aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorJonathan Stanley <shs@users.sourceforge.net>2007-01-27 17:21:20 +0000
committerJonathan Stanley <shs@users.sourceforge.net>2007-01-27 17:21:20 +0000
commit6a4c01cdc319c3bfdebbb54a80127f597345ed8a (patch)
treead13b8fcac4776f38be24bf90897678cab4b8fd7 /phpBB/includes/functions.php
parent538ffb5bfb9dc2ebc9907adc3fc4ea020a442434 (diff)
downloadforums-6a4c01cdc319c3bfdebbb54a80127f597345ed8a.tar
forums-6a4c01cdc319c3bfdebbb54a80127f597345ed8a.tar.gz
forums-6a4c01cdc319c3bfdebbb54a80127f597345ed8a.tar.bz2
forums-6a4c01cdc319c3bfdebbb54a80127f597345ed8a.tar.xz
forums-6a4c01cdc319c3bfdebbb54a80127f597345ed8a.zip
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
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 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 = '<span class="page-sep">' . $user->lang['PAGINATION_SEPERATOR'] . '</span>';
+ $seperator = '<span class="page-sep">' . $user->lang['COMMA_SEPARATOR'] . '</span>';
$total_pages = ceil($num_items / $per_page);
if ($total_pages == 1 || !$num_items)