From: Michael Date: Sat, 25 Nov 2017 16:00:51 +0000 (+0000) Subject: Show the preview picture even if the posting contains the huge image X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ba184f903888c362e99ddfb2defdcb4490a1f8a6;p=friendica.git Show the preview picture even if the posting contains the huge image --- diff --git a/include/bbcode.php b/include/bbcode.php index 83ea3fcfa6..196c3ca3c1 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -52,7 +52,10 @@ function bb_attachment($Text, $simplehtml = false, $tryoembed = true) { $data["title"] = str_replace(array("http://", "https://"), "", $data["title"]); } - if (((strpos($data["text"], "[img=") !== false) || (strpos($data["text"], "[img]") !== false)) && ($data["image"] != "")) { + if (((strpos($data["text"], "[img=") !== false) + || (strpos($data["text"], "[img]") !== false) + || Config::get('system', 'always_show_preview')) + && ($data["image"] != "")) { $data["preview"] = $data["image"]; $data["image"] = ""; }