Seite 1 von 1

Forum bei erstellung schon auf Registriert[Versteckt]

Verfasst: 18.02.2005 18:01
von Felessan
Hi,
wie kann man einstellen, das ein Forum, wenn es Erstellt wird schon auf Regestriert[Versteckt] eingestellt ist?
Da zu muss man irgendwas im Quellcode admin/admin_forums.php verändern, soweit bin ich auch schon, nur was?

Verfasst: 18.02.2005 18:11
von punkface
Hallo

admin_forums.php

suche

Code: Alles auswählen

$forum_auth_ary = array(
	"auth_view" => AUTH_ALL, 
	"auth_read" => AUTH_ALL, 
	"auth_post" => AUTH_ALL, 
	"auth_reply" => AUTH_ALL, 
	"auth_edit" => AUTH_REG, 
	"auth_delete" => AUTH_REG, 
	"auth_sticky" => AUTH_MOD, 
	"auth_announce" => AUTH_MOD, 
	"auth_vote" => AUTH_REG, 
	"auth_pollcreate" => AUTH_REG
);
ersetzten mit

Code: Alles auswählen

$forum_auth_ary = array(
	"auth_view" => AUTH_REG, 
	"auth_read" => AUTH_REG, 
	"auth_post" => AUTH_REG, 
	"auth_reply" => AUTH_REG, 
	"auth_edit" => AUTH_REG, 
	"auth_delete" => AUTH_REG, 
	"auth_sticky" => AUTH_MOD, 
	"auth_announce" => AUTH_MOD, 
	"auth_vote" => AUTH_REG, 
	"auth_pollcreate" => AUTH_REG
);
gruß

Zusatz (22.05.05):
Kleine Erklärung wofür das alles steht:

Berechtigungsarten:
  • auth_view = Ansicht
  • auth_read = Lesen
  • auth_post = Posten
  • auth_reply = Antworten
  • auth_edit = Bearbeiten
  • auth_delete = Löschen
  • auth_sticky = Wichtig
  • auth_announce = Ankündigung
  • auth_vote = Umfrage
  • auth_pollcreat = Umfrage erstellen
  • siehe: Berechtigungsarten
Benutzerebenen, die man verwenden kann:
  • AUTH_ALL = Alle
  • AUTH_REG = Reg
  • AUTH_ACL = Privat
  • AUTH_MOD = Mods
  • AUTH_ADMIN = Admin
  • siehe: Benutzerebenen