diff options
author | Derek Jones <derek.jones@ellislab.com> | 2008-01-18 16:52:48 +0100 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2008-01-18 16:52:48 +0100 |
commit | 8435771a6f831fece5d4267e97c5e9c361dcb70b (patch) | |
tree | e7469b569de52446690bdecb5e5e164935f87faa /system/database/drivers/mysqli | |
parent | 8f00021b55a87ec64a50d15f765160bd4e908c6b (diff) |
fixed bug #3260 tightened type checking before outputting MySQL field as NULL
Diffstat (limited to 'system/database/drivers/mysqli')
-rw-r--r-- | system/database/drivers/mysqli/mysqli_utility.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/mysqli/mysqli_utility.php b/system/database/drivers/mysqli/mysqli_utility.php index 1d910638f..3c9094611 100644 --- a/system/database/drivers/mysqli/mysqli_utility.php +++ b/system/database/drivers/mysqli/mysqli_utility.php @@ -180,7 +180,7 @@ class CI_DB_mysqli_utility extends CI_DB_utility { $v = str_replace('\\\t', '\t', $v);
// Is the value NULL?
- if ($v == NULL)
+ if ($v === NULL)
{
$val_str .= 'NULL';
}
|