Error in version: 11.1 and below
Severity: high
To fix, open the file: /engine/classes/parse.class.php and find:
if( preg_match( "/[?&;%<\[\]]/", $url ) ) {
if( $align != "" ) return "[img=" . $align . "]" . $url . "[/img]";
else return "[img]" . $url . "[/img]";
}
replace with:
if( preg_match( "/[?&;%<\[\]]/", $url ) ) {
return $matches[0];
}