Topic: selecting an image from image manager returns relative url
I have this problem where when i choose an image from image manager it seems return relative urls as opposted to absolute urls. I have setup the tinymce to this:
$(selector).tinymce({
remove_script_host : true,
convert_urls : false,
relative_urls : false,
document_base_url : "http://localhost/"
});
If i have an image in a directory like this: images/test.png
it will return it as /images/test.png rather than http://localhost/test.png
Are there properties in the imagemanager that i need to set to achieve this?
Thanks
Hemang