* Fixed bug #12792: Unit test checkGetExtensionKeyByPrefix of the t3lib_extmgm_testcase fails
* Fixed bug #11326: Memcached backend does not work well if cache of a page shall expire after 30 days (thanks to Vladimir Podkovanov)
* Fixed bug #11345: Uncaught exception InvalidArgumentException on creating graphical menus
+ * Fixed bug #12489: IRRE - Problem with clearing of floated elements in IE
2009-11-26 Francois Suter <francois@typo3.org>
$out = '<div id="' . $objectId . '_header">' . $header . '</div>';
$out .= '<div id="' . $objectId . '_fields"' . $appearanceStyleFields . '>' . $fields.$combination . '</div>';
// wrap the header, fields and combination part of a child record with a div container
- $class = 'inlineDiv'.($this->fObj->clientInfo['BROWSER']=='msie' ? 'MSIE' : '') . ($isNewRecord ? ' inlineIsNewRecord' : '');
+ $classMSIE = ($this->fObj->clientInfo['BROWSER']=='msie' && $this->fObj->clientInfo['VERSION'] < 8 ? 'MSIE' : '');
+ $class = 'inlineDiv' . $classMSIE . ($isNewRecord ? ' inlineIsNewRecord' : '');
$out = '<div id="' . $objectId . '_div" class="'.$class.'">' . $out . '</div>';
// Remove the current level also from the dynNestedStack of TCEforms: