diff options
author | Patrick Zeinert <github@coeus.cc> | 2012-11-05 14:24:05 +0100 |
---|---|---|
committer | Patrick Zeinert <github@coeus.cc> | 2012-11-05 14:24:05 +0100 |
commit | 24c560c5c79605df124f208346c8bff5c152cd1c (patch) | |
tree | efc9047b8ba95a479e55d5aae3e18369fdbae60e /system/database | |
parent | 848572596c165f925607dbdf7a672b3f3eac31f2 (diff) |
Error on line 1407 of db_active_rec.php traces to mis-named variables
Corrected variables to $k2 and $v2
Diffstat (limited to 'system/database')
-rw-r--r-- | system/database/DB_active_rec.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_active_rec.php b/system/database/DB_active_rec.php index 10febb1fc..129eaa7b6 100644 --- a/system/database/DB_active_rec.php +++ b/system/database/DB_active_rec.php @@ -1404,7 +1404,7 @@ class CI_DB_active_record extends CI_DB_driver { } else { - $not[] = $k.'-'.$v; + $not[] = $k2.'-'.$v2; } if ($escape === FALSE) |