Remove harmful HTML decode/encode in BBCode::scaleExternalImages

This commit is contained in:
Hypolite Petovan 2020-01-02 20:35:59 -05:00
parent 7420d07699
commit 0b3cd206c3
1 changed files with 1 additions and 3 deletions

View File

@ -444,7 +444,7 @@ class BBCode
}
// Picture addresses can contain special characters
$s = htmlspecialchars_decode($srctext);
$s = $srctext;
$matches = null;
$c = preg_match_all('/\[img.*?\](.*?)\[\/img\]/ism', $s, $matches, PREG_SET_ORDER);
@ -501,8 +501,6 @@ class BBCode
}
}
// replace the special char encoding
$s = htmlspecialchars($s, ENT_NOQUOTES, 'UTF-8');
return $s;
}