s/implode/Tag::implode/

This commit is contained in:
Shish
2019-02-02 12:07:33 +00:00
parent 0aec16aa5b
commit 60a28af000
12 changed files with 15 additions and 15 deletions

View File

@ -120,7 +120,7 @@ class AdminPage extends Extension {
public function onPostListBuilding(PostListBuildingEvent $event) {
global $user;
if($user->can("manage_admintools") && !empty($event->search_terms)) {
$event->add_control($this->theme->dbq_html(implode(" ", $event->search_terms)));
$event->add_control($this->theme->dbq_html(Tag::implode($event->search_terms)));
}
}