diff options
author | Mario <mario@mariovavti.com> | 2018-12-18 10:17:57 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-12-18 10:17:57 +0100 |
commit | 6fc8c174f911b09382b3e106243128096cef9f49 (patch) | |
tree | 2231ebc3974ec98476168e85ead5b86baac23620 /include/markdown.php | |
parent | 63b205c601c8ff567407155c327515bb0c5165b3 (diff) | |
parent | 3a662555768840d18c6dbba027af644eda54f20e (diff) | |
download | volse-hubzilla-6fc8c174f911b09382b3e106243128096cef9f49.tar.gz volse-hubzilla-6fc8c174f911b09382b3e106243128096cef9f49.tar.bz2 volse-hubzilla-6fc8c174f911b09382b3e106243128096cef9f49.zip |
Merge branch 'dev' into 'dev'
Remove scale_external_images()
See merge request hubzilla/core!1441
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 |