Hello.
I've got a problem with fckeditor latests version (2.6.4) but older ones don't work either.
The problem happens on Safari 3.2.1 with a form set with method=POST
When the form is sent, the value is not added to the textarea which results in the fact that the next page doesn't get the value for this field.
Here is my code:
<html> <head> <title>FCKeditor - Sample</title> <script type="text/javascript" src="fckeditor/fckeditor.js"></script> </head> <body> <form method="POST" action="http://guide.local2.ch/fr/eform/fckeditor/"> <script type="text/javascript"> var oFCKeditor = new FCKeditor('FCKeditor1'); oFCKeditor.BasePath = "/fckeditor/"; oFCKeditor.Create(); </script> <input type="submit" /> </form> </body> </html>
It's similar to the basic exemple, I've just added the post method and the submit button.
The editor show up and everything is fine until I submit the form.
If I output the value of the $_POST params with php, It says that FCKeditor1 is empty.
Just after the submit I spotted an JS with the safari debugger:
NUll value on line 35 of fckeditorcode_gecko.js
I have the same issue with previous versions of the FCK editor.
Does anyone have the same problem or can reproduce it?