mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-12 23:37:02 +02:00
heavy code cleanup in the webui
This commit is contained in:
@ -16,24 +16,12 @@ class ControllerSearchSave extends Controller {
|
||||
|
||||
$this->load->model('search/search');
|
||||
|
||||
//print_r($this->request->post); exit;
|
||||
|
||||
if(isset($this->request->post['save'])) {
|
||||
$a = preg_replace("/\&save=1$/", "", http_build_query($this->request->post));
|
||||
|
||||
$this->model_search_search->add_search_term($a);
|
||||
}
|
||||
|
||||
|
||||
$this->data['searchterms'] = $this->model_search_search->get_search_terms();
|
||||
//print_r($this->data['searchterms']); exit;
|
||||
|
||||
$this->data['n'] = count($this->data['searchterms']);
|
||||
|
||||
$this->data['select_size'] = $this->data['n'] + 1;
|
||||
if($this->data['select_size'] > 7) { $this->data['select_size'] = 7; }
|
||||
|
||||
$this->render();
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user