1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-23 03:25:18 +02:00

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
{
return false;
return ( $transaction == END_TRANSACTION ) ? true : false;
}
}