Bug #82460
closedException in FE if admPanel is enabled and values are overridden
100%
Description
situation¶
Using this user TSconfig
admPanel { enable { preview = 1 } override { preview = 1 preview.showHiddenRecords = 1 } }
result¶
yields this error in FE
#1462820645: accessTimeStamp needs to be set to an integer value, but is empty! Maybe $GLOBALS[‘SIM_ACCESS_TIME’] has been overridden somewhere?
expected¶
The expected behaviour would be to see hidden records and the red "preview" symbol at the top right.
solution¶
The frontend request handling initializes the admin panel, which evaluates the configuration.
Part of this evaluation is to set $GLOBALS[‘SIM_ACCESS_TIME’] to the value given as "simulate time" in the admin panel (or via configuration). This fails and hence the value gets zero, which leads to the seen exception.
The evaluation fails as it calls $simTime = $backendUser->adminPanel->extGetFeAdminValue('preview', 'simulateDate');
.
As seen in the configuration above the value for "simluateDate" is not configured and the logic inside extGetFeAdminValue returns the value of 'preview' in this case, which hasn't been requested.
The fix is to make sure that this lookup on the first key ('preview') is never done if a subkey ('simulateDate') is requested.
Updated by Gerrit Code Review about 7 years ago
- Status changed from Accepted to Under Review
Patch set 2 for branch TYPO3_8-7 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/54112
Updated by Gerrit Code Review about 7 years ago
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/54123
Updated by Alex Kellner about 7 years ago
The same here in TYPO3 8.7.6
Quick workarround - add a simulateDate:
admPanel.override.preview.simulateDate = 123456798
Or dynamically via ext_localconf.php:
$setSimulateDateString = 'admPanel.override.preview.simulateDate = ' . time(); \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addUserTSConfig($setSimulateDateString);
Updated by Markus Klein about 7 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 2a6690b94982de4b07e7130865096c0136e7110a.
Updated by Gerrit Code Review about 7 years ago
- Status changed from Resolved to Under Review
Patch set 1 for branch TYPO3_7-6 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/54198
Updated by Markus Klein about 7 years ago
- Status changed from Under Review to Resolved
Applied in changeset 10075697f87f2e2ecb4a45e682b2674159a70040.
Updated by Gerrit Code Review about 7 years ago
- Status changed from Resolved to Under Review
Patch set 2 for branch TYPO3_7-6 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/54198
Updated by Stephan Großberndt over 6 years ago
- Status changed from Under Review to Resolved