Index: typo3/sysext/lowlevel/config/index.php =================================================================== --- typo3/sysext/lowlevel/config/index.php (revision 6782) +++ typo3/sysext/lowlevel/config/index.php (working copy) @@ -160,15 +160,16 @@ $this->content= $this->doc->header($GLOBALS['LANG']->getLL('configuration', true)); $this->content.= $this->doc->spacer(5); + $search_field = t3lib_div::_GP('search_field'); $this->content .= '
formWidth(20) . ' /> '; - $this->content .= t3lib_BEfunc::getFuncCheck(0,'SET[regexsearch]',$this->MOD_SETTINGS['regexsearch'],'','','id="checkRegexsearch"') . + $this->content .= t3lib_BEfunc::getFuncCheck(0, 'SET[regexsearch]', $this->MOD_SETTINGS['regexsearch'], '', '&search_field=\'+escape(this.form.search_field.value)+\'', 'id="checkRegexsearch"') . ''; - $this->content.= t3lib_BEfunc::getFuncCheck(0, 'SET[fixedLgd]', $this->MOD_SETTINGS['fixedLgd'], '', '', 'id="checkFixedLgd"') . + $this->content .= t3lib_BEfunc::getFuncCheck(0, 'SET[fixedLgd]', $this->MOD_SETTINGS['fixedLgd'], '', '&search_field=\'+escape(this.form.search_field.value)+\'', 'id="checkFixedLgd"') . '
'; @@ -241,7 +242,6 @@ $arrayBrowser->searchKeysToo = TRUE; - $search_field = t3lib_div::_GP('search_field'); if (t3lib_div::_POST('search') && trim($search_field)) { // If any POST-vars are send, update the condition array $arrayBrowser->depthKeys=$arrayBrowser->getSearchKeys($theVar, '', $search_field, array()); }