From 88edd41f5d178df2986fba8881aa5b10b3c31825 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Wed, 13 Feb 2002 15:40:51 +0000 Subject: [PATCH] Fixed error in make_forum_select box generation output git-svn-id: file:///svn/phpbb/trunk@2128 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 1ccb6a78b1..35af3e5de3 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -194,7 +194,7 @@ function make_forum_select($box_name, $ignore_forum = false) message_die(GENERAL_ERROR, "Couldn't obtain forums information.", "", __LINE__, __FILE__, $sql); } - $forum_list = ""; + $forum_list = ''; while( $row = $db->sql_fetchrow($result) ) { if ( $is_auth_ary[$row['forum_id']]['auth_read'] && $ignore_forum != $row['forum_id'] ) @@ -203,7 +203,7 @@ function make_forum_select($box_name, $ignore_forum = false) } } - $forum_list .= ( $forum_list == "" ) ? '' : ''; + $forum_list = ( $forum_list == "" ) ? '' : ''; return $forum_list; }