Bug #19914 ยป 10263_v1.patch
t3lib/class.t3lib_superadmin.php (working copy) | ||
---|---|---|
// Setting section header, if needed.
|
||
if ($head!=$all['siteInfo']['MAIN_DIR']) {
|
||
$lines[] = '
|
||
<h4 style="white-space: nowrap;">'.htmlspecialchars(t3lib_div::fixed_lgd_pre($all['siteInfo']['MAIN_DIR'],18)).'</h4>';
|
||
<h4 style="white-space: nowrap;">'.htmlspecialchars(t3lib_div::fixed_lgd_cs($all['siteInfo']['MAIN_DIR'],-18)).'</h4>';
|
||
$head = $all['siteInfo']['MAIN_DIR']; // Set new head...
|
||
}
|
||
t3lib/class.t3lib_timetrack.php (working copy) | ||
---|---|---|
$temp = array();
|
||
reset($data['tsStack']);
|
||
while(list($k,$v)=each($data['tsStack'])) {
|
||
$temp[] = t3lib_div::fixed_lgd_pre(implode($v,$k?'.':'/'),$keyLgd);
|
||
$temp[] = t3lib_div::fixed_lgd_cs(implode($v,$k?'.':'/'),-$keyLgd);
|
||
}
|
||
array_pop($temp);
|
||
$temp = array_reverse($temp);
|
||
... | ... | |
} else {
|
||
$theLabel = $data['key'];
|
||
}
|
||
$theLabel = t3lib_div::fixed_lgd_pre($theLabel, $keyLgd);
|
||
$theLabel = t3lib_div::fixed_lgd_pre($theLabel, -$keyLgd);
|
||
$theLabel = $data['stackPointer'] ? '<span style="color:maroon;">'.$theLabel.'</span>' : $theLabel;
|
||
$keyLabel = $theLabel.$keyLabel;
|
||
$item.= '<td valign="top" style="text-align:left; white-space:nowrap; padding-left:2px;'.$bgColor.'">'.($flag_tree?$data['icons']:'').$this->fw($keyLabel).'</td>';
|
typo3/sysext/tsconfig_help/mod1/index.php (working copy) | ||
---|---|---|
</script>
|
||
';
|
||
$headerSection = $this->doc->getHeader('pages',$this->pageinfo,$this->pageinfo['_thePath']).'<br />'.$LANG->sL('LLL:EXT:lang/locallang_core.xml:labels.path').': '.t3lib_div::fixed_lgd_pre($this->pageinfo['_thePath'],50);
|
||
$headerSection = $this->doc->getHeader('pages',$this->pageinfo,$this->pageinfo['_thePath']).'<br />'.$LANG->sL('LLL:EXT:lang/locallang_core.xml:labels.path').': '.t3lib_div::fixed_lgd_cs($this->pageinfo['_thePath'],-50);
|
||
$this->content .= $this->doc->header($LANG->getLL('title'));
|
||
$this->content .= $this->doc->spacer(5);
|