Project

General

Profile

Actions

Bug #69443

closed

Fatal error in indexed search pibased plugin

Added by Tymoteusz Motylewski over 8 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Category:
-
Target version:
-
Start date:
2015-08-31
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

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).


Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #68903: indexed_search plugin throws uncatchable fatal error if not logged in in backendClosed2015-08-10

Actions
Actions #1

Updated by Gerrit Code Review over 8 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

Actions #2

Updated by Tymoteusz Motylewski over 8 years ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #3

Updated by Vladimir Falcon over 8 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

Actions #4

Updated by Tymoteusz Motylewski over 8 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.

Actions #5

Updated by Benni Mack over 5 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF