fix incompatibility of expectations in VersionCheck for FF/Gecko Engine; we assume that overall FF-Compatibility is not affected by FF>=Version 17

This commit is contained in:
Klaus Leithoff 2012-11-27 08:26:37 +00:00
parent df4ef45375
commit fa1886d3ac

View File

@ -55,7 +55,7 @@ function FCKeditor_IsCompatibleBrowser()
else if ( strpos($sAgent, 'Gecko/') !== false )
{
$iVersion = (int)substr($sAgent, strpos($sAgent, 'Gecko/') + 6, 8) ;
return ($iVersion >= 20030210) ;
return ($iVersion >= 20030210 || (stripos($sAgent,'firefox/') !== false && $iVersion>=17)) ;
}
else if ( strpos($sAgent, 'Opera/') !== false )
{