![]() |
Imprint - Druckversion +- MyBB.de Forum (https://www.mybb.de/forum) +-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html) +--- Forum: Plugin-Veröffentlichungen und -Support (https://www.mybb.de/forum/forum-82.html) +--- Thema: Imprint (/thread-20570.html) |
RE: Imprint - jraville - 04.11.2017 nein ich habe das geändert was ich nutze RE: Imprint - Jockl - 04.11.2017 Deinem Quelltext ist aber nichts in der Richtung zu entnehmen. Entweder hast Du das falsche Template verwendet, die Änderung nicht gespeichert oder sonst einen Fehler gemacht. Edit: Du hast Dem Link keinen Namen gegeben und Du könntest gem. der bereits genannten Erläuterung in der Doku noch ein Icon einfügen.... RE: Imprint - sommersprossse - 08.11.2018 Hallo Ich habe diesen Plugin installiert und er funktionierte ohne Probleme. Nun wird mir aber seit neustem folgendes angezeigt: Zitat:Warning [2] Use of undefined constant bbname - assumed 'bbname' (this will throw an Error in a future version of PHP) - Line: 5 - File: imprint.php(35) : eval()'d code PHP 7.2.11-he.0 (Linux) Weiß vielleicht jemand, was ich genau in der /imprint.php abändern muss, damit die Meldung verschwindet? glG RE: Imprint - bv64 - 08.11.2018 inc/plugins/imprint.php ändere Zeile 175: Code: <title>{\$settings[bbname]} - {\$lang->imprint}</title> Code: <title>{\$settings['bbname']} - {\$lang->imprint}</title> ändere Zeile 180 Code: <table border="0" cellspacing="{\$theme[borderwidth]}" cellpadding="{\$theme[tablespace]}" class="tborder"> Code: <table border="0" cellspacing="{\$theme['borderwidth']}" cellpadding="{\$theme['tablespace']}" class="tborder"> |