diff options
author | Derek Jones <derek.jones@ellislab.com> | 2008-01-16 22:58:37 +0100 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2008-01-16 22:58:37 +0100 |
commit | 68d021b7d83a9c9a991fc0cef8cddd8149487255 (patch) | |
tree | 06f5f400ce7e64ff20ade03a6153c1aa1341c16b /system | |
parent | 91f50b626517ff34a0436df8e08f2dddfd2d5d7a (diff) |
=== instead of !== ::blush::
Diffstat (limited to 'system')
-rw-r--r-- | system/database/drivers/mysql/mysql_driver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/mysql/mysql_driver.php b/system/database/drivers/mysql/mysql_driver.php index 9dc697670..4535e8cd4 100644 --- a/system/database/drivers/mysql/mysql_driver.php +++ b/system/database/drivers/mysql/mysql_driver.php @@ -452,7 +452,7 @@ class CI_DB_mysql_driver extends CI_DB { // This function may get "item1 item2" as a string, and so
// we may need "`item1` `item2`" and not "`item1 item2`"
- if (ctype_alnum($item) !== FALSE)
+ if (ctype_alnum($item) === FALSE)
{
// This function may get "field >= 1", and need it to return "`field` >= 1"
if ($first_word_only === TRUE)
|