Actions
Bug #83641
closedIndexing / Index direct on save - page_cache_reg1
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
Indexed Search
Target version:
-
Start date:
2018-01-22
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
8
PHP Version:
7.0
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Indexing on save configuration is causing mysql err "Incorrect integer value: ''" for column page_cache_reg1
backend_initIndexer (sysext/indexed_search/Classes/Indexer.php LN381) is initializing page_cache_reg1 as
$this->conf['page_cache_reg1'] = '';
should be
$this->conf['page_cache_reg1'] = 0;
as the field is defined as INT11 by installer
Actions