Project

General

Profile

Actions

Bug #76142

closed

Indexed Search - $this->conf['index_descrLgd'] seems to be null/not set

Added by Andreas Fragner almost 8 years ago. Updated about 4 years ago.

Status:
Closed
Priority:
Must have
Assignee:
-
Category:
Indexed Search
Target version:
-
Start date:
2016-05-11
Due date:
% Done:

0%

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

Description

I wanted to XCLASS the following class to make the item description a little bit longer:
\TYPO3\CMS\IndexedSearch\Indexer::class

I adpated the functions backend_initIndexer and bodyDescription to fit my needs.

I set:

$this->conf['index_descrLgd'] = 500;

and:

$maxL = MathUtility::forceIntegerInRange($this->conf['index_descrLgd'], 0, 500, 200);

But nothing happened - still only 200 characters in database. I also changed the according template settings to store more than 200 characters and to show more than 200 characters in the FE output of the search results.

At last I changed these values also in the source code of indexed_search system extension to exclude possible mistakes I could have made in XCLASS - but also only 200 characters where stored in the database. But if I change the default value for

MathUtility::forceIntegerInRange
to 500 I see 500 characters in the database. So I suppose
$this->['index_descrLgd']
is null or not set.

Expected: Correct value of index_descrLgd available in function bodyDescription.

Actions

Also available in: Atom PDF