Actions
Bug #48188
closedVariableFrontend cache does not support identifiers containing dots
Start date:
2013-05-14
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.1
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
... this causes extbase to crash when using external DB tables (e.g "database.table" notation) as the persistence layer (Typo3DbBackend) is using the VariableFrontend for its tableColumnCache.
Is it OK to change
const PATTERN_ENTRYIDENTIFIER = '/^[a-zA-Z0-9_%\\-&]{1,250}$/';
to
const PATTERN_ENTRYIDENTIFIER = '/^[a-zA-Z0-9_%\\-&\.]{1,250}$/';
in TYPO3\CMS\Core\Cache\Frontend\FrontendInterface ?
Actions