Ok, I found a better way to do this without another preg_replace().
Replace this:
Code:
$bbcode = preg_replace("/(\[)(img)(])(\r\n)*([^\"".iif($allowdynimg,"","\?\&")."]*)(\[\/img\])/siU", "<img src=\"\\5\" border=\"0\" alt=\"\">", $bbcode);
With this:
Code:
$bbcode = preg_replace("/(\[)(img)(=([^\]]*))?(])(\r\n)*([^\"".iif($allowdynimg,"","\?\&")."]*)(\[\/img\])/siU", "<img src=\"\\7\" align=\"\\4\" border=\"0\" alt=\"\">", $bbcode);
(and undo my original change)