mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-22 08:56:47 +01:00
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:
parent
299ec3af5e
commit
e2c1846d6b
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue