Bug #23478 ยป bug_15591.diff
typo3_src_trunk/typo3/db_new.php 2010-08-15 20:49:51.000000000 +0400 | ||
---|---|---|
continue;
|
||
}
|
||
$nameParts = explode('_', $table);
|
||
$thisTitle = '';
|
||
$_EXTKEY = $thisTitle = '';
|
||
if ($nameParts[0] == 'tx' || $nameParts[0] == 'tt') {
|
||
// try to extract extension name
|
||
if (substr($v['ctrl']['title'], 0, 8) == 'LLL:EXT:') {
|
||
... | ... | |
$thisTitle = $EM_CONF[$_EXTKEY]['title'];
|
||
}
|
||
$iconFile[$_EXTKEY] = '<img src="' . t3lib_extMgm::extRelPath($_EXTKEY) . 'ext_icon.gif" />';
|
||
// ext key unknown, use title as key in array
|
||
} else {
|
||
$thisTitle = $nameParts[1];
|
||
$iconFile[$_EXTKEY] = '';
|
||
$iconFile[$thisTitle] = '';
|
||
}
|
||
// ext key unknown, use title as key in array
|
||
} else {
|
||
$thisTitle = $nameParts[1];
|
||
$iconFile[$_EXTKEY] = '';
|
||
$iconFile[$thisTitle] = '';
|
||
}
|
||
} else {
|
||
$_EXTKEY = 'system';
|