mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 23:42:11 +00:00
pass resultmode to view
This commit is contained in:
parent
3cf724dea8
commit
83cdedad51
|
@ -436,6 +436,7 @@ if(count($entries) == 1) {
|
|||
$view->setParam('totalfolders', $fcount /*resArr['totalFolders']*/);
|
||||
$view->setParam('fullsearch', (isset($_GET["fullsearch"]) && $_GET["fullsearch"]) ? true : false);
|
||||
$view->setParam('mode', isset($mode) ? $mode : '');
|
||||
$view->setParam('resultmode', $resultmode);
|
||||
$view->setParam('searchin', isset($searchin) ? $searchin : array());
|
||||
$view->setParam('startfolder', isset($startFolder) ? $startFolder : null);
|
||||
$view->setParam('owner', $owner);
|
||||
|
|
|
@ -57,6 +57,7 @@ class SeedDMS_View_Search extends SeedDMS_Bootstrap_Style {
|
|||
$allCats = $this->params['allcategories'];
|
||||
$allUsers = $this->params['allusers'];
|
||||
$mode = $this->params['mode'];
|
||||
$resultmode = $this->params['resultmode'];
|
||||
$workflowmode = $this->params['workflowmode'];
|
||||
$enablefullsearch = $this->params['enablefullsearch'];
|
||||
$enableclipboard = $this->params['enableclipboard'];
|
||||
|
|
Loading…
Reference in New Issue
Block a user