TYPO3 API  SVNRelease
registerIe6Stylesheet.php
Go to the documentation of this file.
00001 <?php
00002 
00003 if(TYPO3_MODE == 'BE') {
00004 
00005         // handle stupid IE6
00006     $userAgent = t3lib_div::getIndpEnv('HTTP_USER_AGENT');
00007 
00008     if(!(strpos($userAgent, 'MSIE 6') === false)
00009     && strpos($userAgent, 'Opera') === false
00010     && strpos($userAgent, 'MSIE 7') === false) {
00011             //make sure we match IE6 but not Opera or IE7
00012         $GLOBALS['TYPO3backend']->addCssFile('ie6fix', 'sysext/t3skin/stylesheets/ie6.css');
00013     }
00014 
00015 }
00016 
00017 ?>