diff options
author | Alex Bilbie <alex@alexbilbie.com> | 2012-06-02 12:09:54 +0200 |
---|---|---|
committer | Alex Bilbie <alex@alexbilbie.com> | 2012-06-02 12:09:54 +0200 |
commit | 48a2baf0e288accd206f5da5031d29076e130792 (patch) | |
tree | 9f2f0130ae05cfbe8301ab29cbbb2d389cc7c65f /system/database/drivers/postgre/postgre_forge.php | |
parent | ed944a3c70a0bad158cd5a6ca5ce1f2e717aff5d (diff) |
Replaced `==` with `===` and `!=` with `!==` in /system/database
Diffstat (limited to 'system/database/drivers/postgre/postgre_forge.php')
-rw-r--r-- | system/database/drivers/postgre/postgre_forge.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/postgre/postgre_forge.php b/system/database/drivers/postgre/postgre_forge.php index 94c97af50..af1c45f9b 100644 --- a/system/database/drivers/postgre/postgre_forge.php +++ b/system/database/drivers/postgre/postgre_forge.php @@ -214,7 +214,7 @@ class CI_DB_postgre_forge extends CI_DB_forge { } return $sql.$this->_process_fields($fields) - .($after_field != '' ? ' AFTER '.$this->db->protect_identifiers($after_field) : ''); + .($after_field !== '' ? ' AFTER '.$this->db->protect_identifiers($after_field) : ''); } } |