You are not logged in.
Pages: 1
Hello
I'm developing a blog with Xinha editor, and I have a problem displaying images with ImageManager.
When I add an image, it generates an HTML file with the following code:
<img width=\"200\" height=\"150\" src=\"Xinha/plugins/ImageManager/demo_images/wesnoth078.jpg\" alt=\"wesnoth078.jpg\" />
With this code the image isn't displayed (I only have the picture's name), and if I remove all the backslashes (\) it works !!!
Is there a way to generate that code without the backslashes or any other solution to display my picture?
Thank you.
Offline
Does nobody has any solution ?
Offline
When do the backslashes occur? Already in the editor or when submit the Form? If the latter andyou're using php, this would be the magic quotes engine of php. Then you would have to do something like
$html = (get_magic_quotes_gpc()) ? stripslashes($html) :$html;
If otherwise it already happens in the editor, I don't know either
Offline
Pages: 1