MyBB.de Forum
geschlossene Themen - 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: geschlossene Themen (/thread-304.html)

Seiten: Seiten: 1 2 3


RE: geschlossene Themen - Garlant - 04.10.2008

Hallo Susanne,

diesmal sit die Änderung noch einfacher als sonst, da es nur einer kleinen Änderung bedarf.

Öffne bitte die newreply.php und suche: (Zeile 145)
PHP-Code:
// Check to see if the thread is closed, and if the user is a mod.
if(!is_moderator($fid"caneditposts")) 
Ersetze dies dann bitte mit:
PHP-Code:
// Check to see if the thread is closed, and if the user is a super admin.
// Changed: 2008-10-04 https://www.mybb.de/forum/newreply.php?tid=304 - Garlant
if(!is_super_admin($mybb->user['uid'])) 

Mfg Garlant


RE: geschlossene Themen - Susanne - 04.10.2008

Danke!!!