diff options
author | Andrey Andreev <narf@devilix.net> | 2016-11-23 11:37:23 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-11-23 11:37:23 +0100 |
commit | efd856edce0b952c8a7a62ec953ae1baee77ff34 (patch) | |
tree | 2399860d6082e43f6f0b65709b60193996c06e49 | |
parent | 21b7a2a2d00bd5645b2ca1afcfa4098e207292a4 (diff) |
[ci skip] Styling change after 21b7a2a2d00bd5645b2ca1afcfa4098e207292a4
-rw-r--r-- | system/database/DB_forge.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/database/DB_forge.php b/system/database/DB_forge.php index fe81d0510..9add5cab7 100644 --- a/system/database/DB_forge.php +++ b/system/database/DB_forge.php @@ -912,8 +912,8 @@ abstract class CI_DB_forge { // White-list CURRENT_TIMESTAMP & similar (e.g. Oracle has stuff like SYSTIMESTAMP) defaults for date/time fields if ( isset($attributes['TYPE']) - && (stripos($attributes['TYPE'], 'time') !== FALSE || stripos($attributes['TYPE'], 'date') !== FALSE) - && (stripos($attributes['DEFAULT'], 'time') !== FALSE || stripos($attributes['DEFAULT'], 'date') !== FALSE) + && (stripos($attributes['TYPE'], 'time') !== FALSE OR stripos($attributes['TYPE'], 'date') !== FALSE) + && (stripos($attributes['DEFAULT'], 'time') !== FALSE OR stripos($attributes['DEFAULT'], 'date') !== FALSE) ) { $field['default'] = $this->_default.$attributes['DEFAULT']; |