Yes at the end of the script there is a string to post the content.
The rest of the code looks like this, not sure exactly what it's doing, but it definately isn't removing the bbcode image.
// Cleanup
$search = array ("'<s cript[^>]*?>.*?</sc ript>'si",
"'<[\/\!]*?[^<>]*?>'si",
"'([\r\n])[\s]+'",
"'&(amp|#38);'i",
"'&(lt|#60);'i",
"'&(gt|#62);'i",
"'&(nbsp|#160);'i",
"'&(iexcl|#161);'i",
"'&(cent|#162);'i",
"'&(pound|#163);'i",
"'&(copy|#169);'i",
"'&#(\d+);'e"
);
$replace = array ( "",
"",
"\\1",
"&",
"<",
">",
" ",
chr(161),
chr(162),
chr(163),
chr(169),
"chr(\\1)"
);
$MyNewDesc = preg_replace($search, $replace, $MyNewDesc);
$description = substr($MyNewDesc,0,$desclen);
$_metastring .= "<META NAME=\"DESCRIPTION\" CONTENT=\"$description\">\n";
echo $_metastring;
And no, I don't need any of this to show up in the description.
[img:e25b2133d3]http://i4.photobucket.com/albums/y124/2old4this12/7-18413.jpg[/img:e25b2133d3]">