diff --git a/module/caselib/control.php b/module/caselib/control.php index 5de52c6f32..1be9f15ba7 100644 --- a/module/caselib/control.php +++ b/module/caselib/control.php @@ -322,25 +322,6 @@ class caselib extends control $this->display(); } - /** - * The results page of search. - * - * @param string $keywords - * @param string $module - * @param string $method - * @param mixed $extra - * @access public - * @return void - */ - public function ajaxGetMatchedItems($keywords, $module, $method, $extra) - { - $libraries = $this->dao->select('*')->from(TABLE_TESTSUITE)->where('deleted')->eq(0)->andWhere('name')->like("%$keywords%")->andWhere('type')->eq('library')->orderBy('`id` desc')->fetchAll(); - $this->view->link = $this->caselib->getLibLink($module, $method, $extra); - $this->view->libraries = $libraries; - $this->view->keywords = $keywords; - $this->display(); - } - /** * Export template. *