Remove scale_external_images()

This commit is contained in:
Max Kostikov 2018-12-17 13:28:18 +01:00
parent 4d8a815932
commit a2959c6e9e

View File

@ -91,8 +91,6 @@ function markdown_to_bb($s, $use_zrl = false, $options = []) {
// remove duplicate adjacent code tags // remove duplicate adjacent code tags
$s = preg_replace("/(\[code\])+(.*?)(\[\/code\])+/ism","[code]$2[/code]", $s); $s = preg_replace("/(\[code\])+(.*?)(\[\/code\])+/ism","[code]$2[/code]", $s);
// Don't show link to full picture (until it is fixed)
$s = scale_external_images($s, false);
/** /**
* @hooks markdown_to_bb * @hooks markdown_to_bb