turns out that this was necessary o_O

This commit is contained in:
Shish 2010-04-26 06:07:34 +01:00
parent f5f49fa4e7
commit e1f9d77271

View File

@ -77,7 +77,7 @@ class PageRequestEvent extends Event {
public function get_search_terms() {
$search_terms = array();
if($this->count_args() == 2) {
$search_terms = Tag::explode(' ', $this->get_arg(0));
$search_terms = explode(' ', $this->get_arg(0));
}
return $search_terms;
}