Opened 17 years ago

Closed 13 years ago

#875 closed New Feature (wontfix)

Make editor detectable on server side

Reported by: guitarking117@… Owned by:
Priority: Normal Milestone:
Component: General Version:
Keywords: SF HasPatch Cc:

Description (last modified by Martin Kou)

One problem my company has encountered is detecting if this editor was used. Unfortunately, not all browsers support this great editor. So, especially when you're using it in a 450,000-member forum, you start to hear complaints when some people's text is formatted and others' isn't.

We set a format=y/n flag in our database on each message, but we are having ot set it to 'n' on everything because carriage returns will be doubled if we format messages upon display that have already been edited by the FCKeditor.

So, we made this temporary change to fckeditor.php in the function CreateHtml():

$Html .= "<input type=\"hidden\" id=\"{$this->InstanceName}___Config
\" value=\"" . $this->GetConfigFieldString() . "\" style=\"display:none\"
/
>" ;

-to-

$Html .= "<input type=\"hidden\" id=\"{$this->InstanceName}___Config
\" name=\"{$this->InstanceName}___Config\" value=\"" . $this-
>GetConfigFieldString() . "\" style=\"display:none\" />" ;

That way, we can detect that that field was editing using the FCKeditor by

testing for

isset($_POST['body___Config'])

and setting the y/n flagaccordingly.

Just an idea.

Nicholas

Change History (4)

comment:1 Changed 17 years ago by Martin Kou

Description: modified (diff)
Reporter: changed from Martin Kou to guitarking117@…

comment:2 Changed 17 years ago by Martin Kou

Description: modified (diff)

comment:3 Changed 16 years ago by Wojciech Olchawa

Keywords: HasPatch added

comment:4 Changed 13 years ago by Wiktor Walc

Resolution: wontfix
Status: newclosed

I haven't seen any similar feature requests + FCKeditor is no longer maintained.

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