diff options
author | Max Kostikov <max@kostikov.co> | 2018-12-17 13:28:18 +0100 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2018-12-17 13:28:18 +0100 |
commit | a2959c6e9e795c0c8c6e87b70d8d0a935ae272f9 (patch) | |
tree | 1f9679f3feeb3a400c575b53927d7f39c630d546 /include/markdown.php | |
parent | 4d8a815932113c87333a4f3e95a7bf1c56d87e73 (diff) | |
download | volse-hubzilla-a2959c6e9e795c0c8c6e87b70d8d0a935ae272f9.tar.gz volse-hubzilla-a2959c6e9e795c0c8c6e87b70d8d0a935ae272f9.tar.bz2 volse-hubzilla-a2959c6e9e795c0c8c6e87b70d8d0a935ae272f9.zip |
Remove scale_external_images()
Diffstat (limited to 'include/markdown.php')
-rw-r--r-- | include/markdown.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/markdown.php b/include/markdown.php index 64f0a0854..2513a7d77 100644 --- a/include/markdown.php +++ b/include/markdown.php @@ -91,8 +91,6 @@ function markdown_to_bb($s, $use_zrl = false, $options = []) { // remove duplicate adjacent code tags $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 |