tinyMCE automatically parses links

Posted by gong on Stack Overflow See other posts from Stack Overflow or by gong
Published on 2010-06-14T12:26:13Z Indexed on 2010/06/14 12:32 UTC
Read the original article Hit count: 192

Filed under:
|

hello, I use tinyMCE like:

$usetinymce="tinyMCE.init({
    entity_encoding : \"raw\",
    elements : \"text,newstext\",
    mode : \"exact\",
    theme: \"advanced\",
    theme_advanced_buttons1 : \"bold,italic,underline,strikethrough,separator,\"
    + \"justifyleft,justifycenter,justifyright,justifyfull,formatselect,\"
    + \"bullist,numlist,outdent,indent\",
    theme_advanced_buttons2 : \"link,unlink,anchor,image,separator,\"
    +\"undo,redo,cleanup,code,separator,sub,sup,charmap\",
    theme_advanced_buttons3 : \"\"

    });";

If I insert a link the it appears like: www.111.gr/

How is this extra \ added? I also did a print_r($_POST) and still appears.

any help

© Stack Overflow or respective owner

Related posts about php

Related posts about tinymce