I am using FCK in my own CMS - via php connector.
When I entered this link
<p><a onclick="ContentReload('?Proc=content/view/113&Ajax=1');" class="AjaxLink">LINK</a>, Lozorno</p>
Fck show next time & as 'amp; -- and also link is not working second time (because it's damaged)
Here is output
<p><a onclick="ContentReload('?Proc=content/view/113'amp;Ajax=1');" class="AjaxLink">LINK</a>, Lozorno</p>
I checked data stored in Mysql after first save in Fck.. It was correct!
Could anyone helps me ? Thanks a lot.
When I entered this link
<p><a onclick="ContentReload('?Proc=content/view/113&Ajax=1');" class="AjaxLink">LINK</a>, Lozorno</p>
Fck show next time & as 'amp; -- and also link is not working second time (because it's damaged)
Here is output
<p><a onclick="ContentReload('?Proc=content/view/113'amp;Ajax=1');" class="AjaxLink">LINK</a>, Lozorno</p>
I checked data stored in Mysql after first save in Fck.. It was correct!
Could anyone helps me ? Thanks a lot.

Re: FCK display &amp; in link as 'amp;
Frederico Knabben
CKEditor Project Lead and CKSource Owner
--
Follow us on: Twitter | Facebook | Google+ | LinkedIn
Re: FCK display &amp; in link as 'amp;
I replace onclick in <a onclick to <a href="javascript:
After this change - editor displays in source good value & (after 2nd save it is not html damaged)
Cool.. I will use this way.. But remember for future - there is problem with <a onclick ... and & in link
function ShowSimple() { echo "DEBUG: ".$this->Value; $Editor = new CEditor($this->Name, $this->Value); if (isset($this->Height)) { $Editor->Editor->Height = $this->Height; } $content = $Editor->Show(); unset($Editor); return $content; }Re: FCK display &amp; in link as 'amp;
Frederico Knabben
CKEditor Project Lead and CKSource Owner
--
Follow us on: Twitter | Facebook | Google+ | LinkedIn