diff options
author | Andrey Andreev <narf@bofh.bg> | 2013-01-15 03:41:02 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2013-01-15 03:41:02 +0100 |
commit | b26bb6ef76eb2f8327dafe085ae6bca14c22160b (patch) | |
tree | a9592331df604d054037a3759819a774fcf1410f /system/libraries/Unit_test.php | |
parent | 5b60a3bb74d39b8718081cb62c21f9f48e7a4a87 (diff) | |
parent | 912f1bcbc3d4f9b09695ab784d6985efbc4c9235 (diff) |
Merge pull request #2152 from vlakoff/develop
Replace is_null() with === / !== NULL
Diffstat (limited to 'system/libraries/Unit_test.php')
-rw-r--r-- | system/libraries/Unit_test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/libraries/Unit_test.php b/system/libraries/Unit_test.php index de8c9bb80..7a67c7276 100644 --- a/system/libraries/Unit_test.php +++ b/system/libraries/Unit_test.php @@ -356,12 +356,12 @@ class CI_Unit_test { */ protected function _parse_template() { - if ( ! is_null($this->_template_rows)) + if ($this->_template_rows !== NULL) { return; } - if (is_null($this->_template) OR ! preg_match('/\{rows\}(.*?)\{\/rows\}/si', $this->_template, $match)) + if ($this->_template === NULL OR ! preg_match('/\{rows\}(.*?)\{\/rows\}/si', $this->_template, $match)) { $this->_default_template(); return; |