From e1c9a24e34357e8e8330ee25e02a606f797eb2f7 Mon Sep 17 00:00:00 2001 From: Susanne Moog Date: Wed, 16 Jun 2010 19:37:07 +0000 Subject: [PATCH] Fixed bug #14633: Nested form tag breaks editing icons and ExtJS funcitonality in the page module for IE8 users (Thanks to Jo Hasenau) git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@7940 709f56b5-9817-0410-a4d7-c38de5d9e867 --- ChangeLog | 1 + typo3/sysext/cms/layout/db_layout.php | 2 +- typo3/sysext/cms/layout/js/typo3pageModule.js | 8 +------- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3ccaf12595b7..6720a57c1641 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,6 @@ 2010-06-16 Susanne Moog + * Fixed bug #14633: Nested form tag breaks editing icons and ExtJS funcitonality in the page module for IE8 users (Thanks to Jo Hasenau) * Fixed bug #14132: Regexp for automatic line breaks in Gifbuilder is incorrect (Thanks to Jigal van Hemert) * Follow-up to #14733: Improvements to Backend skin - Fixed typo * Fixed bug #14733: Improvements to Backend skin (Thanks to Steffen Gebert) diff --git a/typo3/sysext/cms/layout/db_layout.php b/typo3/sysext/cms/layout/db_layout.php index 140b62646985..553343b25c79 100755 --- a/typo3/sysext/cms/layout/db_layout.php +++ b/typo3/sysext/cms/layout/db_layout.php @@ -1114,7 +1114,7 @@ class SC_db_layout { // Making search form: if (!$this->modTSconfig['properties']['disableSearchBox'] && count($tableOutput)) { - $content.=$this->doc->section($LANG->sL('LLL:EXT:lang/locallang_core.php:labels.search'),$dblist->getSearchBox(),0,1); + $content .= $this->doc->section($LANG->sL('LLL:EXT:lang/locallang_core.php:labels.search'), $dblist->getSearchBox(0), 0, 1); } // Making display of Sys-notes (from extension "sys_note") diff --git a/typo3/sysext/cms/layout/js/typo3pageModule.js b/typo3/sysext/cms/layout/js/typo3pageModule.js index 1b003fa91801..03ebc86b3e2c 100644 --- a/typo3/sysext/cms/layout/js/typo3pageModule.js +++ b/typo3/sysext/cms/layout/js/typo3pageModule.js @@ -3,13 +3,7 @@ var typo3pageModule = { * Initialization */ init: function() { - if (Ext.isIE) { - // set all content elements active - // the whole functionality doesn't work in IE6-8 - Ext.select('div.t3-page-ce').addClass('active'); - } else { - typo3pageModule.enableHighlighting(); - } + typo3pageModule.enableHighlighting(); }, /** -- 2.20.1