summaryrefslogtreecommitdiffstats
path: root/system/database/DB_active_rec.php
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-01-30 22:32:47 +0100
committerDerek Allard <derek.allard@ellislab.com>2008-01-30 22:32:47 +0100
commit4a310b7aef013a02288fc0b37571c841c10323f7 (patch)
tree1af9b38df262c7264fc595fe205f3d60c92b05a8 /system/database/DB_active_rec.php
parent452c049c25e8bf2fbc3de6f137cad34c0eda6902 (diff)
fix orlike to call or_like
Diffstat (limited to 'system/database/DB_active_rec.php')
-rw-r--r--system/database/DB_active_rec.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_active_rec.php b/system/database/DB_active_rec.php
index 37bf9ed05..e93b99e3d 100644
--- a/system/database/DB_active_rec.php
+++ b/system/database/DB_active_rec.php
@@ -595,7 +595,7 @@ class CI_DB_active_record extends CI_DB_driver {
*/
function orlike($field, $match = '', $side = 'both')
{
- return $this->orlike($field, $match, $side);
+ return $this->or_like($field, $match, $side);
}
// --------------------------------------------------------------------