This mod replaces any image tags in a quote and replaces them with url tags.
open /scripts/quickquote.inc.php
Find:
Add after:
$post_body = preg_replace('%\[(img|img:left|img:right|img:center|image|image:left|image:center|image:right)\]%i', '', $post_body);
$post_body = preg_replace('%\[(/img|/image)\]%i', '', $post_body);
open /scripts/newreply.inc.php
Find:
add after:
$RawBody = preg_replace('%\[(img|img:left|img:right|img:center|image|image:left|image:center|image:right)\]%i', '', $RawBody);
$RawBody = preg_replace('%\[(/img|/image)\]%i', '', $RawBody);
That's it.
I also have a line that replaces youtube with a link.
that you could implement that also for other video's you might embed. Above works for [youtube]url or id[/youtube].