diff options
author | Jonathan Stanley <shs@users.sourceforge.net> | 2007-01-27 17:21:20 +0000 |
---|---|---|
committer | Jonathan Stanley <shs@users.sourceforge.net> | 2007-01-27 17:21:20 +0000 |
commit | 6a4c01cdc319c3bfdebbb54a80127f597345ed8a (patch) | |
tree | ad13b8fcac4776f38be24bf90897678cab4b8fd7 /phpBB/includes/functions_display.php | |
parent | 538ffb5bfb9dc2ebc9907adc3fc4ea020a442434 (diff) | |
download | forums-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_display.php')
-rw-r--r-- | phpBB/includes/functions_display.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index 76f261bab1..e62bf674e6 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -524,7 +524,7 @@ function topic_generate_pagination($replies, $url) } else if ($times < $total_pages) { - $pagination .= '<span class="page-sep">' . $user->lang['PAGINATION_SEPERATOR'] . '</span>'; + $pagination .= '<span class="page-sep">' . $user->lang['COMMA_SEPARATOR'] . '</span>'; } $times++; } |