Index: lib/class.tx_dam_guirenderlist.php =================================================================== --- lib/class.tx_dam_guirenderlist.php (revision 32895) +++ lib/class.tx_dam_guirenderlist.php (working copy) @@ -255,6 +255,7 @@ * @return string Items output */ function getOutput($type='footer', $itemList='') { + if (is_null($itemList)) return; if($itemList) { @@ -349,7 +350,7 @@ if (is_array($this->items_params_override[$prefix.$func])) { $arg_list = $arg_list + $this->items_params_override[$prefix.$func]; } elseif (is_array($this->items_params[$prefix.$func])) { - $arg_list = $arg_list + $this->items_params[$prefix.$func]; + $arg_list = array_merge($arg_list, $this->items_params[$prefix.$func]); } return call_user_func_array(array($this, 'callUserFunction'), $arg_list); Index: modfunc_list_list/class.tx_dam_list_list.php =================================================================== --- modfunc_list_list/class.tx_dam_list_list.php (revision 32895) +++ modfunc_list_list/class.tx_dam_list_list.php (working copy) @@ -105,7 +105,7 @@ # $this->pObj->guiItems->registerFunc('getResultBrowser', 'footer'); $this->pObj->guiItems->registerFunc('getCurrentSelectionBox', 'footer'); - $this->pObj->guiItems->registerFunc('getSearchBox', 'footer'); + $this->pObj->guiItems->registerFunc('getSearchBox', 'footer', array('simple', true)); $this->pObj->guiItems->registerFunc('getOptions', 'footer'); $this->pObj->guiItems->registerFunc('getStoreControl', 'footer'); @@ -128,6 +128,9 @@ $content = ''; $table = 'tx_dam'; + + // Get rid of wrapper form tag. + $this->pObj->doc->form = null;