From: Ingo Renner Date: Tue, 22 Apr 2008 19:51:51 +0000 (+0000) Subject: fixed unskinned icons X-Git-Tag: TYPO3_4-2-0~18 X-Git-Url: http://git.typo3.org/Packages/TYPO3.CMS.git/commitdiff_plain/38b5e03efd79f16ba7efecadfde3d86efcf824ff fixed unskinned icons git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@3615 709f56b5-9817-0410-a4d7-c38de5d9e867 --- diff --git a/t3lib/class.t3lib_tsparser_ext.php b/t3lib/class.t3lib_tsparser_ext.php index 4d97f14d1125..a869bd7babf2 100755 --- a/t3lib/class.t3lib_tsparser_ext.php +++ b/t3lib/class.t3lib_tsparser_ext.php @@ -612,7 +612,7 @@ class t3lib_tsparser_ext extends t3lib_TStemplate { $A_B=''; $A_E=''; } - $HTML.=($first?'':'').''.$A_B.t3lib_div::fixed_lgd_cs($row['title'],$GLOBALS['BE_USER']->uc['titleLen']).$A_E.'  '; + $HTML.=($first?'':'').' '.$A_B.t3lib_div::fixed_lgd_cs($row['title'],$GLOBALS['BE_USER']->uc['titleLen']).$A_E.'  '; $RL = $this->ext_getRootlineNumber($row['pid']); $keyArray[] = ' '.$HTML.' diff --git a/typo3/sysext/tstemplate_analyzer/class.tx_tstemplateanalyzer.php b/typo3/sysext/tstemplate_analyzer/class.tx_tstemplateanalyzer.php index 9457f3824bc5..567d11910b58 100644 --- a/typo3/sysext/tstemplate_analyzer/class.tx_tstemplateanalyzer.php +++ b/typo3/sysext/tstemplate_analyzer/class.tx_tstemplateanalyzer.php @@ -91,7 +91,7 @@ class tx_tstemplateanalyzer extends t3lib_extobjbase { $existTemplate = $this->initialize_editor($this->pObj->id,$template_uid); // initialize if ($existTemplate) { $theOutput.=$this->pObj->doc->divider(5); - $theOutput.=$this->pObj->doc->section("Current template:",''.$this->pObj->linkWrapTemplateTitle($tplRow["title"]).''.htmlspecialchars(trim($tplRow["sitetitle"])?' - ('.$tplRow["sitetitle"].')':'')); + $theOutput.=$this->pObj->doc->section("Current template:",' '.$this->pObj->linkWrapTemplateTitle($tplRow["title"]).''.htmlspecialchars(trim($tplRow["sitetitle"])?' - ('.$tplRow["sitetitle"].')':'')); } if ($manyTemplatesMenu) { $theOutput.=$this->pObj->doc->section("",$manyTemplatesMenu); diff --git a/typo3/sysext/tstemplate_objbrowser/class.tx_tstemplateobjbrowser.php b/typo3/sysext/tstemplate_objbrowser/class.tx_tstemplateobjbrowser.php index 9e8fd7cabd67..b8a68d853005 100644 --- a/typo3/sysext/tstemplate_objbrowser/class.tx_tstemplateobjbrowser.php +++ b/typo3/sysext/tstemplate_objbrowser/class.tx_tstemplateobjbrowser.php @@ -209,7 +209,7 @@ class tx_tstemplateobjbrowser extends t3lib_extobjbase { $existTemplate = $this->initialize_editor($this->pObj->id,$template_uid); // initialize if ($existTemplate) { $theOutput.=$this->pObj->doc->divider(5); - $theOutput.=$this->pObj->doc->section("Current template:",''.$this->pObj->linkWrapTemplateTitle($tplRow["title"], ($bType=="setup"?"config":"constants")).''.htmlspecialchars(trim($tplRow["sitetitle"])?' - ('.$tplRow["sitetitle"].')':''),0,0); + $theOutput.=$this->pObj->doc->section("Current template:",' '.$this->pObj->linkWrapTemplateTitle($tplRow["title"], ($bType=="setup"?"config":"constants")).''.htmlspecialchars(trim($tplRow["sitetitle"])?' - ('.$tplRow["sitetitle"].')':''),0,0); if ($manyTemplatesMenu) { $theOutput.=$this->pObj->doc->section("",$manyTemplatesMenu); $theOutput.=$this->pObj->doc->divider(5);