6
2
Forkuj 0
kopia lustrzana https://github.com/friendica/friendica zsynchronizowano 2025-09-01 21:11:11 +02:00

Show the preview picture even if the posting contains the huge image

Ten commit jest zawarty w:
Michael 2017-11-25 16:00:51 +00:00
commit ba184f9038

Wyświetl plik

@ -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"] = "";
}