]> git.mxchange.org Git - friendica.git/commitdiff
Attachments now look fine.
authorMichael <heluecht@pirati.ca>
Mon, 17 Jul 2017 19:38:15 +0000 (19:38 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 17 Jul 2017 19:38:15 +0000 (19:38 +0000)
include/text.php

index 57881e9293ba20d078150a8c12527a0afd9de7a1..83588731fc3529e98369c9621eac10b0d7be072a 100644 (file)
@@ -1425,11 +1425,12 @@ function prepare_body(&$item, $attach = false, $preview = false) {
 
                                        if (($filetype == 'image') AND ($item['network'] == NETWORK_OSTATUS)) {
                                                $icon = '<img class="attached" src="'.$the_url.'" alt="" title="'.$title.'">';
+                                               $s .= '<br><a href="' . strip_tags($the_url) . '" title="' . $title . '" class="attached" target="_blank" >' . $icon . '</a>';
                                        } else {
                                                $icon = '<div class="attachtype icon s22 type-' . $filetype . ' subtype-' . $filesubtype . '"></div>';
+                                               $as .= '<a href="' . strip_tags($the_url) . '" title="' . $title . '" class="attachlink" target="_blank" >' . $icon . '</a>';
                                        }
 
-                                       $as .= '<a href="' . strip_tags($the_url) . '" title="' . $title . '" class="attachlink" target="_blank" >' . $icon . '</a>';
                                }
                        }
                }