Bug #17978
closedProblem with cms\tslib\index_ts.php
0%
Description
Hi
Why \cms\tslib\index_ts.php concerning frontend editing.
older versions frontend editing sfuff wa here
$BE_USER->extInitFeAdmin();
if ($BE_USER->extAdmEnabled) {
// frontend editing here
in new file later
// *********************************
// Frontend editing
// *********************************
if ($TSFE->beUserLogin && $BE_USER->extAdmEnabled) {
The change violates pluging pixe_feediting and presumably mk_tvfronend,
which calls templavoila api function this way:
$sourcePointerString = $this->TSFE_EDIT['flexformPointer'];
$sourcePointer = $this->flexform_getPointerFromString ($sourcePointerString);
$apiClassName = t3lib_div::makeInstanceClassName('tx_templavoila_api');
$TVObj = new $apiClassName ($sourcePointer['table']);
Calling of api function doesn't work as expected - works after reloading page.
file cms\tslib\index_ts.php from Typo3 4.1.1 solved the problem.
file cms\tslib\index_ts.php from Typo3 4.1.1 solved the problem
Just replace in newer version the existing file with older one
(issue imported from #M7121)