Minor update to return true should a transaction be ended without a query ... does nothing except prevent premature failure of calling routine

git-svn-id: file:///svn/phpbb/trunk@2341 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2002-03-19 01:07:36 +00:00
parent 20998e14c6
commit 654e5151cf

View file

@ -114,7 +114,7 @@ class sql_db
} }
else else
{ {
return false; return ( $transaction == END_TRANSACTION ) ? true : false;
} }
} }