![]() |
Auto Unapprove Reported Posts - 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: Auto Unapprove Reported Posts (/thread-23321.html) |
Auto Unapprove Reported Posts - MyBB.de Bot - 25.04.2011 Eine neue Erweiterung wurde veröffentlicht: Auto Unapprove Reported Posts Zitat:Compatible with MyBB 1.4.x and MyBB 1.6.x RE: Auto Unapprove Reported Posts - jonas11 - 18.09.2011 Ich habe das Plugin getetet. Wenn ein Beitrag gemeldet wird, kommt aber die Fehlermeldung "Fatal error: Call to a member function update_reportedposts() on a non-object in /home/www/kunden/MEINESEITE.de/inc/plugins/autounapprove.php on line 227" Hat jemand eine Idee, was da schief gelaufen ist ? Liegts an meinem Forum oder am Plugin ? RE: Auto Unapprove Reported Posts - StefanT - 19.09.2011 Da scheint ein Fehler im Plugin. RE: Auto Unapprove Reported Posts - Jockl - 19.09.2011 Komisch ist allerdings, dass in dem Support-Thread bei mybb.com dieser Fehler bislang nicht gemeldet wurde.... RE: Auto Unapprove Reported Posts - NetHunter - 19.09.2011 Ich nutze das Plugin nicht. Habe es mal überflogen. Vielleicht hilft es: PHP-Code: $cache->update_reportedposts(); PHP-Code: require_once MYBB_ROOT."inc/class_datacache.php"; RE: Auto Unapprove Reported Posts - StefanT - 19.09.2011 Der Cache wird standardmäßig benötigt. Wahrscheinlich fehlt ein global $cache. RE: Auto Unapprove Reported Posts - tomtom - 19.09.2011 genau so ist es, global $cache fehlt. Damit solltest Du Zeile 210: global $mybb, $db, $thread, $reportedpost; ersetzen mit: global $mybb, $db, $cache, $thread, $reportedpost; RE: Auto Unapprove Reported Posts - jonas11 - 19.09.2011 Ja super, jetzt klappts. |