|
From: Paul S. O. <ps...@us...> - 2002-02-18 13:10:52
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv19785/includes
Modified Files:
post.php
Log Message:
sigh ....
Index: post.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/post.php,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -r1.16 -r1.17
*** post.php 18 Feb 2002 12:34:16 -0000 1.16
--- post.php 18 Feb 2002 13:10:49 -0000 1.17
***************
*** 570,574 ****
{
$sql = "SELECT ban_userid
! FROM " . BANLIST_TABLE;
if ( !($result = $db->sql_query($sql)) )
{
--- 570,574 ----
{
$sql = "SELECT ban_userid
! FROM " . BANLIST_TABLE . ";
if ( !($result = $db->sql_query($sql)) )
{
***************
*** 579,583 ****
while ( $row = $db->sql_fetchrow($result) )
{
! $user_id_sql = ", " . $row['ban_userid'];
}
--- 579,586 ----
while ( $row = $db->sql_fetchrow($result) )
{
! if ( isset($row['ban_user_id']) )
! {
! $user_id_sql = ", " . $row['ban_userid'];
! }
}
|