Opened 18 years ago
Closed 18 years ago
#1807 closed Bug (invalid)
fail with Opera 9.20
| Reported by: | caroso | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | General | Version: | |
| Keywords: | Cc: |
Description
A possible solution: In file "fckeditor.php"
else if ( strpos($sAgent, 'Opera/') !== false )
{
$fVersion = (float)substr($sAgent, strpos($sAgent, 'Opera/') + 6, strpos($sAgent, '.') - strpos($sAgent, 'Opera/') - 6) ;
if ($fVersion > 9)
{
return true;
}
else if ($fVersion == 9)
{
return ( (int)substr($sAgent, strpos($sAgent, '.') +1, strpos($sAgent, '(') - strpos($sAgent, '.') ) >= 5);
}
else
{
return false;
}
}

the compatibility is for Opera 9.5
You can find betas here: http://my.opera.com/desktopteam/blog/