diff options
author | Busfreak <martin@middeke.de> | 2016-06-06 17:50:49 +0200 |
---|---|---|
committer | Busfreak <martin@middeke.de> | 2016-06-06 17:50:49 +0200 |
commit | 61cedc489c0d08f89972fd50789e6d936379141a (patch) | |
tree | 9d00a167a0fa4e5d9a20cf486fd7cb9b6a1a8cd9 /app/Template/dashboard | |
parent | 3e686f99b5f69e5c4ff2ba480a14bccf2c9e55a9 (diff) |
fix for search bug in dashboard
Diffstat (limited to 'app/Template/dashboard')
-rw-r--r-- | app/Template/dashboard/show.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/dashboard/show.php b/app/Template/dashboard/show.php index 917a6651..637b60f8 100644 --- a/app/Template/dashboard/show.php +++ b/app/Template/dashboard/show.php @@ -1,8 +1,8 @@ <div class="filter-box"> <form method="get" action="<?= $this->url->dir() ?>" class="search"> - <?= $this->form->hidden('controller', array('controller' => 'search')) ?> + <?= $this->form->hidden('controller', array('controller' => 'SearchController')) ?> <?= $this->form->hidden('action', array('action' => 'index')) ?> - <?= $this->form->text('SearchController', array(), array(), array('placeholder="'.t('Search').'"'), 'form-input-large') ?> + <?= $this->form->text('search', array(), array(), array('placeholder="'.t('Search').'"'), 'form-input-large') ?> <?= $this->render('app/filters_helper') ?> </form> </div> |