www.google.com?var=1&var=2&var=3
into CKEditor it automatically inserts &
leaving the link looking like this: www.google.com?var=1&var=2&var=3
Has anyone ever had this problem and found the solution?
www.google.com?var=1&var=2&var=3
into CKEditor it automatically inserts &
leaving the link looking like this: www.google.com?var=1&var=2&var=3
Has anyone ever had this problem and found the solution?
According to this thread in CKEditor support , you need to change a configuration so that &
is not "escaped" when within links:
CKEDITOR.config.forceSimpleAmpersand = true;
After enabling this setting (which can also be done for an individual publisher, instead of globally on the page), the created publishers will not convert &
to &
within links, but will continue to do so in normal content (as expected). I can not tell in what other circumstances this behavior also occurs, if any.