Bug #69443
closedFatal error in indexed search pibased plugin
100%
Description
Fatal error: Call to a member function includeLLFile() on a non-object in indexed search pibased plugin after pull
It;s a regression caused by https://review.typo3.org/#/c/41592
because $GLOBALS['LANG'] doesn't exist in the frontend context (if be user is not logged in).
Updated by Gerrit Code Review over 9 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/42946
Updated by Tymoteusz Motylewski over 9 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 81d7ce7c36e3f061862324ec4b7324be02511cb4.
Updated by Vladimir Falcon about 9 years ago
I'm not sure but I think this Patch do not work, at least it did not work for me.
TYPO3 7.4.0
Problem:
File: typo3/sysext/indexed_search/Classes/Controller/SearchFormController.php
Function main ()
Line 185
$this->pi_loadLL('EXT:indexed_search/Resources/Private/Language/locallang_pi.xlf');
The function pi_loadLL does not takes any parameter.
The fatal error is gone but translation as well.
My solution:
Replace line 185 whit the following lines
/** @var $languageFactory \TYPO3\CMS\Core\Localization\LocalizationFactory */
$languageFactory = GeneralUtility::makeInstance(\TYPO3\CMS\Core\Localization\LocalizationFactory::class);
$this->LOCAL_LANG = $languageFactory->getParsedData('EXT:indexed_search/Resources/Private/Language/locallang_pi.xlf',$this->LLkey);
Thanks you all
Updated by Tymoteusz Motylewski about 9 years ago
Hi Vladimir
It looks like you're using new indexed search version on the old core.
Or have an xclass or AbstractPlugin, and haven't updated the loadLL method.
Since few weeks the pi_loadLL function takes an argument, see http://review.typo3.org/42934
It was implemented to solve problems like one with indexed search.
I'm not sure though if it was already released in 7.4 or not.