From: Benni Mack Date: Wed, 24 Oct 2007 05:44:22 +0000 (+0000) Subject: Fixed Bug #6582: Deprecated use of language="text/javascript" in function loadJavascr... X-Git-Tag: TYPO3_4-2-0alpha2~97 X-Git-Url: http://git.typo3.org/Packages/TYPO3.CMS.git/commitdiff_plain/c5958992f1d48e501ea232bd7e649b0431272bc7 Fixed Bug #6582: Deprecated use of language="text/javascript" in function loadJavascriptLib in template.php (thanks to Christian Kuhn) git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@2614 709f56b5-9817-0410-a4d7-c38de5d9e867 --- diff --git a/ChangeLog b/ChangeLog index 6dbfb78a9740..831bc6b290f9 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-10-24 Benjamin Mack + + * Fixed Bug #6582: Deprecated use of language="text/javascript" in function loadJavascriptLib in template.php (thanks to Christian Kuhn) + 2007-10-23 Stanislas Rolland * Fixed bug #5151: rtehtmlarea install/uninstall requires clearing cache diff --git a/typo3/template.php b/typo3/template.php index bc5f012ab3a0..221521631b7e 100755 --- a/typo3/template.php +++ b/typo3/template.php @@ -1257,7 +1257,7 @@ $str.=$this->docBodyTagBegin(). */ function loadJavascriptLib($lib) { if (!isset($this->JScodeLibArray[$lib])) { - $this->JScodeLibArray[$lib] = ''; + $this->JScodeLibArray[$lib] = ''; } }