Topic: Quote message keeping [img] tag

Hi,

I'd like to know, if possible, how to automatically keep the img tag of a post after quotying-it, so that the quoted post displays the image instead of just an url link to that image?

Many thanks

Re: Quote message keeping [img] tag

Open up post.php and locate the rows:

        $q_message = str_replace('[img]', '[url]', $q_message);
        $q_message = str_replace('[/img]', '[/url]', $q_message);
        $q_message = pun_htmlspecialchars($q_message);

And remove them or comment them out.

"Programming is like sex: one mistake and you have to support it for the rest of your life."