Opened 16 years ago

Closed 16 years ago

#3227 closed Bug (invalid)

Opera bug

Reported by: Eugene Owned by:
Priority: Normal Milestone:
Component: General Version:
Keywords: Cc:

Description

opera 9.23 if you try to view FCKEditor in Opera v 9.23 you will see a simple textarea tag instead of editor.

I've found a way to fix it.

In file fckeditor_php5.php or fckeditor_php4.php

replace $fVersion = (float)substr($sAgent, strpos($sAgent, 'Opera/') + 6, 4) ;

return ($fVersion >= 9.5) ;

with

$fVersion = (float)substr($sAgent, strpos($sAgent, 'Opera/') + 6, 4) ; return ($fVersion >= 9.2) ;

And bug will be fixed.

Change History (1)

comment:1 Changed 16 years ago by Alfonso Martínez de Lizarrondo

Keywords: Opera removed
Milestone: Opera Compatibility
Priority: HighNormal
Resolution: invalid
Status: newclosed

The compatibility is with Opera 9.5, not with previous versions. If you want to change that, it's up to you, but please don't file or ask for support about any bug that you find using an unsupported version.

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy