From e1f9d77271e10aef5fbdaf78c67d48cc0beada9c Mon Sep 17 00:00:00 2001 From: Shish Date: Mon, 26 Apr 2010 06:07:34 +0100 Subject: [PATCH] turns out that this was necessary o_O --- core/event.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/event.class.php b/core/event.class.php index feba9976..14043de4 100644 --- a/core/event.class.php +++ b/core/event.class.php @@ -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; }