diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-01-30 22:32:47 +0100 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-01-30 22:32:47 +0100 |
commit | 4a310b7aef013a02288fc0b37571c841c10323f7 (patch) | |
tree | 1af9b38df262c7264fc595fe205f3d60c92b05a8 | |
parent | 452c049c25e8bf2fbc3de6f137cad34c0eda6902 (diff) |
fix orlike to call or_like
-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 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);
}
// --------------------------------------------------------------------
|