From: Martin Helmich Date: Sat, 25 Aug 2012 12:40:23 +0000 (+0200) Subject: [BUGFIX] Wrong file and classname in indexed_search X-Git-Tag: TYPO3_6-0-0beta1~51 X-Git-Url: http://git.typo3.org/Packages/TYPO3.CMS.git/commitdiff_plain/9774b2e1c44c29aa80015dd346e27e191b2023d6 [BUGFIX] Wrong file and classname in indexed_search Change-Id: I4124e26c4f18e898c5841024fed98055e1a46f54 Fixes: #40182 Related: #40095 Releases: 6.0 Reviewed-on: http://review.typo3.org/14078 Reviewed-by: Christian Kuhn Tested-by: Christian Kuhn --- diff --git a/typo3/sysext/indexed_search/Classes/Controller/SearchFormController.php b/typo3/sysext/indexed_search/Classes/Controller/SearchFormController.php index 6e6188f61b0e..a87912d9724b 100644 --- a/typo3/sysext/indexed_search/Classes/Controller/SearchFormController.php +++ b/typo3/sysext/indexed_search/Classes/Controller/SearchFormController.php @@ -200,7 +200,7 @@ class SearchFormController extends \TYPO3\CMS\Frontend\Plugin\AbstractPlugin { } } // Init lexer (used to post-processing of search words) - $lexerObjRef = $TYPO3_CONF_VARS['EXTCONF']['indexed_search']['lexer'] ? $TYPO3_CONF_VARS['EXTCONF']['indexed_search']['lexer'] : 'EXT:indexed_search/class.lexer.php:&TYPO3\\CMS\\IndexedSearch\\Controller\\SearchFormController_lexer'; + $lexerObjRef = $TYPO3_CONF_VARS['EXTCONF']['indexed_search']['lexer'] ? $TYPO3_CONF_VARS['EXTCONF']['indexed_search']['lexer'] : 'EXT:indexed_search/Classes/Lexer.php:&TYPO3\\CMS\\IndexedSearch\\Lexer'; $this->lexerObj = \TYPO3\CMS\Core\Utility\GeneralUtility::getUserObj($lexerObjRef); // If "_sections" is set, this value overrides any existing value. if ($this->piVars['_sections']) {