diff options
author | Steffen Stollfuß <j0inty@users.noreply.github.com> | 2015-11-09 10:15:29 +0100 |
---|---|---|
committer | Steffen Stollfuß <j0inty@users.noreply.github.com> | 2015-11-09 10:15:29 +0100 |
commit | 06381b6307aa23f5e0fbe6669df0695d712ce69a (patch) | |
tree | ed51f83bf60288db1fe2ae2ea1f76d78a56c985d | |
parent | dd11297837f50ea2fd37f891cb8b4408f84f53e0 (diff) |
Fixed PHP code style
* fixed PHP code style
-rw-r--r-- | system/database/DB_driver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php index 6797df0f8..88b41fa5e 100644 --- a/system/database/DB_driver.php +++ b/system/database/DB_driver.php @@ -774,7 +774,7 @@ abstract class CI_DB_driver { { if ( ! $this->conn_id) { - if( !$this->initialize() ) + if( ! $this->initialize()) { return FALSE; } |