summaryrefslogtreecommitdiffstats
path: root/system/database/DB_driver.php
diff options
context:
space:
mode:
authorClaudio Galdiolo <claudio.galdiolo@gmail.com>2016-01-08 21:13:13 +0100
committerClaudio Galdiolo <claudio.galdiolo@gmail.com>2016-01-08 21:13:13 +0100
commit8de7faa9ff7f342d57966bde0b0429ab241c2a6f (patch)
tree83681fa924709646ecd558a0cdfab2cea8719f79 /system/database/DB_driver.php
parent7569337eeffac64aa251f4bf9eeda569e391693b (diff)
use 'while' instead of 'if' 'do' 'while'
Diffstat (limited to 'system/database/DB_driver.php')
-rw-r--r--system/database/DB_driver.php16
1 files changed, 6 insertions, 10 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php
index af6b9f399..59662a946 100644
--- a/system/database/DB_driver.php
+++ b/system/database/DB_driver.php
@@ -641,19 +641,15 @@ abstract class CI_DB_driver {
// if transactions are enabled. If we don't call this here
// the error message will trigger an exit, causing the
// transactions to remain in limbo.
- if ($this->_trans_depth !== 0)
+ while ($this->_trans_depth !== 0)
{
- do
+ $trans_depth = $this->_trans_depth;
+ $this->trans_complete();
+ if ($trans_depth === $this->_trans_depth)
{
- $trans_depth = $this->_trans_depth;
- $this->trans_complete();
- if ($trans_depth === $this->_trans_depth)
- {
- log_message('error', 'Database: Failure during an automated transaction commit/rollback!');
- break;
- }
+ log_message('error', 'Database: Failure during an automated transaction commit/rollback!');
+ break;
}
- while ($this->_trans_depth !== 0);
}
// Display errors