aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2002-02-08 20:54:21 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2002-02-08 20:54:21 +0000
commitcec8dba611671cccf6ef9d48343e8d4ef0e138ce (patch)
tree7cf1a030138725f7d5670e0378488fe12a3fa386 /phpBB/includes/functions.php
parent39a8a832ca7bef7c97824b46c0d98479328ce770 (diff)
downloadforums-cec8dba611671cccf6ef9d48343e8d4ef0e138ce.tar
forums-cec8dba611671cccf6ef9d48343e8d4ef0e138ce.tar.gz
forums-cec8dba611671cccf6ef9d48343e8d4ef0e138ce.tar.bz2
forums-cec8dba611671cccf6ef9d48343e8d4ef0e138ce.tar.xz
forums-cec8dba611671cccf6ef9d48343e8d4ef0e138ce.zip
Fixed missing " bug #514823
git-svn-id: file:///svn/phpbb/trunk@2067 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 d2053c0290..f52e640b07 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -458,7 +458,7 @@ function generate_pagination($base_url, $num_items, $per_page, $start_item, $add
if ( $on_page < $total_pages )
{
- $page_string .= '&nbsp;&nbsp;<a href=' . append_sid($base_url . "&amp;start=" . ( $on_page * $per_page ) ) . '">' . $lang['Next'] . '</a>';
+ $page_string .= '&nbsp;&nbsp;<a href="' . append_sid($base_url . "&amp;start=" . ( $on_page * $per_page ) ) . '">' . $lang['Next'] . '</a>';
}
}