turns out that this was necessary o_O

This commit is contained in:
Shish 2010-04-26 06:07:34 +01:00
parent 1ca3b24973
commit 40ca6316fd

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;
}