diff options
author | Steffen Stollfuß <j0inty@users.noreply.github.com> | 2015-11-09 12:26:04 +0100 |
---|---|---|
committer | Steffen Stollfuß <j0inty@users.noreply.github.com> | 2015-11-09 12:26:04 +0100 |
commit | cebb13b988e0e4d352d90170e064d1affbcf1697 (patch) | |
tree | 7f9b8058157acc8e6bc2d173f08006988d5f7904 /system/database | |
parent | 06381b6307aa23f5e0fbe6669df0695d712ce69a (diff) |
Fixed PHP code style part 2
* added missing space character
Diffstat (limited to 'system/database')
-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 88b41fa5e..25e70ec3f 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; } |