diff --git a/typo3/sysext/indexed_search/Classes/Controller/IndexedPagesController.php b/typo3/sysext/indexed_search/Classes/Controller/IndexedPagesController.php index 19eab6d29cfd196c350f3dd2f6e1e89cd59bef7d..b2d60d680a1abe85ce4df1923da5774d6b845555 100644 --- a/typo3/sysext/indexed_search/Classes/Controller/IndexedPagesController.php +++ b/typo3/sysext/indexed_search/Classes/Controller/IndexedPagesController.php @@ -72,6 +72,11 @@ class IndexedPagesController extends \TYPO3\CMS\Backend\Module\AbstractFunctionM */ public $indexerObj; + /** + * @int Default number of list entries per page + */ + protected $maxListPerPage; + /** * Initialize menu array internally * @@ -164,8 +169,8 @@ class IndexedPagesController extends \TYPO3\CMS\Backend\Module\AbstractFunctionM } else { // Detail listings: // Depth function menu: - $h_func = BackendUtility::getFuncMenu($this->pObj->id, 'SET[type]', $this->pObj->MOD_SETTINGS['type'], $this->pObj->MOD_MENU['type'], 'index.php'); - $h_func .= BackendUtility::getFuncMenu($this->pObj->id, 'SET[depth]', $this->pObj->MOD_SETTINGS['depth'], $this->pObj->MOD_MENU['depth'], 'index.php'); + $h_func = BackendUtility::getFuncMenu($this->pObj->id, 'SET[type]', $this->pObj->MOD_SETTINGS['type'], $this->pObj->MOD_MENU['type']); + $h_func .= BackendUtility::getFuncMenu($this->pObj->id, 'SET[depth]', $this->pObj->MOD_SETTINGS['depth'], $this->pObj->MOD_MENU['depth']); // Show title / function menu: $theOutput .= $this->pObj->doc->header($LANG->getLL('title')); $theOutput .= $this->pObj->doc->section('', $h_func, 0, 1);