Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

  1.  
    When I change a description using the AJAX inline editing all special characters (accented ones, etc) are converted into something unreadable. When editing is done using the "Edit entry" icon all special characters are properly maintained.

    I think the problem can be solved in the file admin/js/ajax_editing.js but I have no clue with regards to JavaScript programming.

    Btw, I'm using the standard Beta3 code.
    • CommentAuthoreveevans
    • CommentTimeDec 11th 2007
     
    yes, i have the same problem,
    if you can solve it please tell me how,
    (eveevansml@gmail.com).
    i will tell you if i do it first
    • CommentAuthoreveevans
    • CommentTimeDec 17th 2007
     
    bueno , finalmente y despues de un acumulado de 20 hras solucione el problema,
    lo hice con un htmlentities en cada llamada
    y con un html_entity_decode para cada lectura

    mas info
    eveevansml@gmail.com
    • CommentAuthorwillydee
    • CommentTimeJan 6th 2008
     
    A simple solution, change /admin/js/ajax_editing.js, line 40, from
        var new_content = escape(...
    into
        var new_content = encodeURIComponent(...
    and you're done.

    Kind regards, willydee.
    Thankful People: amihere