diff options
Diffstat (limited to 'kohana/libraries/drivers/Database.php')
-rw-r--r-- | kohana/libraries/drivers/Database.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kohana/libraries/drivers/Database.php b/kohana/libraries/drivers/Database.php index d478aa6a..96562240 100644 --- a/kohana/libraries/drivers/Database.php +++ b/kohana/libraries/drivers/Database.php @@ -154,7 +154,7 @@ abstract class Database_Driver { * @param int number of likes * @return string */ - public function like($field, $match = '', $auto = TRUE, $type = 'AND ', $num_likes) + public function like($field, $match, $auto, $type, $num_likes) { $prefix = ($num_likes == 0) ? '' : $type; @@ -178,7 +178,7 @@ abstract class Database_Driver { * @param int number of likes * @return string */ - public function notlike($field, $match = '', $auto = TRUE, $type = 'AND ', $num_likes) + public function notlike($field, $match, $auto, $type, $num_likes) { $prefix = ($num_likes == 0) ? '' : $type; |