BUGFIX: Allow parent implementation to access content entry

E.g. it's possible to configure search_abstract to contain the value of
any record entry. Still content was not possible as it was set
afterwards.
This commit is contained in:
Daniel Siepmann 2017-07-18 14:19:32 +02:00
parent 299ec3af5e
commit e2c1846d6b
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -57,8 +57,8 @@ class PagesIndexer extends TcaIndexer
*/
protected function prepareRecord(array &$record)
{
parent::prepareRecord($record);
$record['content'] = $this->fetchContentForPage($record['uid']);
parent::prepareRecord($record);
}
/**