diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-03-19 01:07:36 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-03-19 01:07:36 +0000 |
commit | 654e5151cf5a8ea1bc5ccef587d0d8a81ea698c6 (patch) | |
tree | aba5bd30fce596717e73b91be778e55c4640bb7a /phpBB/db | |
parent | 20998e14c65c08c3be6115caa21abc65386d0931 (diff) | |
download | forums-654e5151cf5a8ea1bc5ccef587d0d8a81ea698c6.tar forums-654e5151cf5a8ea1bc5ccef587d0d8a81ea698c6.tar.gz forums-654e5151cf5a8ea1bc5ccef587d0d8a81ea698c6.tar.bz2 forums-654e5151cf5a8ea1bc5ccef587d0d8a81ea698c6.tar.xz forums-654e5151cf5a8ea1bc5ccef587d0d8a81ea698c6.zip |
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
Diffstat (limited to 'phpBB/db')
-rw-r--r-- | phpBB/db/mysql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/db/mysql.php b/phpBB/db/mysql.php index f61f7cb755..054394f05e 100644 --- a/phpBB/db/mysql.php +++ b/phpBB/db/mysql.php @@ -114,7 +114,7 @@ class sql_db } else { - return false; + return ( $transaction == END_TRANSACTION ) ? true : false; } } |