Attachment - Druckversion +- MyBB.de Forum (https://www.mybb.de/forum) +-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html) +--- Forum: MyBB 1.2.x und älter (https://www.mybb.de/forum/forum-27.html) +---- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-36.html) +---- Thema: Attachment (/thread-7351.html) Seiten: Seiten:
1
2
|
RE: Attachment - Manni-L - 10.10.2007 Gibts vielleicht kurzfristig einen kleinen Patch? RE: Attachment - Michael - 10.10.2007 Versuche es so: Öffne die Datei inc/functions_post.php und ersetze PHP-Code: elseif(($attachment['thumbnail'] == "SMALL" && $forumpermissions['candlattachments'] == "yes") || $mybb->settings['attachthumbnails'] == 'no') PHP-Code: elseif(($attachment['thumbnail'] == "SMALL" && $forumpermissions['candlattachments'] == "yes") || $mybb->settings['attachthumbnails'] == 'no' && $isimage) RE: Attachment - Manni-L - 10.10.2007 Michael, die von dir beschriebe Zeile kommt in inc/functions_post.php zweimal vor. Bei mir (V1.2.8) ist das in den Zeilen 506 und 531. Ich habe beide geändert. Ein kurzer erster Test zeigt, dass es funktioniert! Danke für die kompetente und schnelle Hilfe! Manni |