[TYPO3-dev]  Why change in \cms\tslib\index_ts.php
    Tapio Markula 
    tapio.markula at xetpoint.fi
       
    Fri Jan 11 10:28:13 CET 2008
    
    
  
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.
    
    
More information about the TYPO3-dev
mailing list