summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/mysql/mysql_driver.php
diff options
context:
space:
mode:
authorDerek Jones <derek.jones@ellislab.com>2008-01-16 22:58:37 +0100
committerDerek Jones <derek.jones@ellislab.com>2008-01-16 22:58:37 +0100
commit68d021b7d83a9c9a991fc0cef8cddd8149487255 (patch)
tree06f5f400ce7e64ff20ade03a6153c1aa1341c16b /system/database/drivers/mysql/mysql_driver.php
parent91f50b626517ff34a0436df8e08f2dddfd2d5d7a (diff)
=== instead of !== ::blush::
Diffstat (limited to 'system/database/drivers/mysql/mysql_driver.php')
-rw-r--r--system/database/drivers/mysql/mysql_driver.php2
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)