Index: typo3/classes/class.typo3logo.php
===================================================================
--- typo3/classes/class.typo3logo.php (Revision 8878)
+++ typo3/classes/class.typo3logo.php (Arbeitskopie)
@@ -63,14 +63,14 @@
$imgInfo = getimagesize(PATH_site . TYPO3_mainDir . $logoFile);
- $logo = ''.
+ $logo = ''.
''.
'';
// overwrite with custom logo
if($GLOBALS['TBE_STYLES']['logo']) {
$imgInfo = @getimagesize(t3lib_div::resolveBackPath(PATH_typo3 . $GLOBALS['TBE_STYLES']['logo'], 3));
- $logo = '' .
+ $logo = '' .
'' .
'';
}
Index: typo3/template.php
===================================================================
--- typo3/template.php (Revision 8878)
+++ typo3/template.php (Arbeitskopie)
@@ -130,7 +130,7 @@
*
* @param string Input string
* @return string Output string (in the old days this was wrapped in tags)
- * @deprecated since TYPO3 3.6
+ * @deprecated since TYPO3 3.6, will be removed in TYPO3 4.6; please use CSS from now on
*/
function fw($str) {
t3lib_div::logDeprecatedFunction();
@@ -418,8 +418,10 @@
* Use this in links to remove the underlining after being clicked
*
* @return string
+ * @deprecated since TYPO3 4.5, will be removed in TYPO3 4.7
*/
function thisBlur() {
+ t3lib_div::logDeprecatedFunction();
return ($GLOBALS['CLIENT']['FORMSTYLE']?'this.blur();':'');
}
@@ -428,8 +430,10 @@
* Use for -links to help texts
*
* @return string
+ * @deprecated since TYPO3 4.5, will be removed in TYPO3 4.7
*/
function helpStyle() {
+ t3lib_div::logDeprecatedFunction();
return $GLOBALS['CLIENT']['FORMSTYLE'] ? ' style="cursor:help;"':'';
}
@@ -1034,9 +1038,10 @@
*
* @return void
* @internal
- * @deprecated since TYPO3 3.6
+ * @deprecated since TYPO3 3.6, will be removed in TYPO3 4.6
*/
function middle() {
+ t3lib_div::logDeprecatedFunction();
}
/**
Index: typo3/backend.php
===================================================================
--- typo3/backend.php (Revision 8878)
+++ typo3/backend.php (Arbeitskopie)
@@ -582,7 +582,7 @@
* @return string HTML code snippet to display the TYPO3 logo
*/
protected function getLogo() {
- $logo = ''.
+ $logo = ''.
''.
'';
@@ -591,7 +591,7 @@
if(substr($GLOBALS['TBE_STYLES']['logo'], 0, 3) == '../') {
$imgInfo = @getimagesize(PATH_site.substr($GLOBALS['TBE_STYLES']['logo'], 3));
}
- $logo = ''.
+ $logo = ''.
''.
'';
}
Index: typo3/sysext/wizard_crpages/class.tx_wizardcrpages_webfunc_2.php
===================================================================
--- typo3/sysext/wizard_crpages/class.tx_wizardcrpages_webfunc_2.php (Revision 8878)
+++ typo3/sysext/wizard_crpages/class.tx_wizardcrpages_webfunc_2.php (Arbeitskopie)
@@ -258,7 +258,7 @@
* @return string HTML code for a help-bubble image.
*/
function helpBubble() {
- return 'pObj->doc->helpStyle().' alt="" />';
+ return '';
}
/**
Index: typo3/sysext/cms/layout/db_new_content_el.php
===================================================================
--- typo3/sysext/cms/layout/db_new_content_el.php (Revision 8878)
+++ typo3/sysext/cms/layout/db_new_content_el.php (Arbeitskopie)
@@ -309,11 +309,11 @@
// Radio button:
$oC = "document.editForm.defValues.value=unescape('".rawurlencode($wInfo['params'])."');goToalt_doc();".(!$this->onClickEvent?"window.location.hash='#sel2';":'');
$content .= $this->elementWrapper['wizardPart'][0] .
- '' .
+ '' .
$this->elementWrapper['wizardPart'][1];
// Onclick action for icon/title:
- $aOnClick = 'document.getElementsByName(\'tempB\')['.$cc.'].checked=1;'.$this->doc->thisBlur().$oC.'return false;';
+ $aOnClick = 'document.getElementsByName(\'tempB\')['.$cc.'].checked=1;'.$oC.'return false;';
// Icon:
$iInfo = @getimagesize($wInfo['icon']);