Actions
Bug #15271
closedt3lib_tceforms references hardcoded tx_templavoila
Start date:
2005-12-11
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
3.9-dev
PHP Version:
4
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
In t3lib_tceforms line 2048 is ardcoded a reference to tx_templavoila
function getSingleField_typeFlex_draw($dataStruct,$editData,$cmdData,$table,$field,$row,&$PA,$formPrefix='',$level=0,$tRows=array()) {
// Data Structure array must be ... and array of course...
if (is_array($dataStruct)) {
foreach($dataStruct as $key => $value) {
if (is_array($value)) { // The value of each entry must be an array.
// ************
// Making the row:
// ************
$rowCells=array();
// Icon:
$rowCells['title'] = '<img src="clear.gif" width="'.($level*16).'" height="1" alt="" /><strong>'.htmlspecialchars(t3lib_div::fixed_lgd_cs($this->sL($value['tx_templavoila']['title']),30)).'</strong>';;
$rowCells['formEl']='';
if ($value['type']=='array') {
if ($value['section']) {
(issue imported from #M2021)
Updated by Sebastian Kurfuerst almost 19 years ago
Hi,
can you give a suggestion how to change this?
Greets, Sebastian
Updated by Ingo Schmitt almost 19 years ago
I don't have a suggestion. Maybee robert ?
Updated by Thomas Peterson almost 19 years ago
My Idea t3lib_extMgm::getCN('templavoila') but when the name changed in the Page Sheets it do not work because the function use the
classname.
Is it right and you understood :-D
Updated by Ingo Schmitt almost 19 years ago
As TV is an extension to TYPO3_core it shouldn't be hardcoded named in the TYPO3_core, or am i missing somthing?
Actions