From cec8dba611671cccf6ef9d48343e8d4ef0e138ce Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Fri, 8 Feb 2002 20:54:21 +0000 Subject: [PATCH] Fixed missing " bug #514823 git-svn-id: file:///svn/phpbb/trunk@2067 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 .= '  ' . $lang['Next'] . ''; + $page_string .= '  ' . $lang['Next'] . ''; } }