new forum "moderator hidden" by default
Verfasst: 17.02.2005 20:06
die forum permission ist ja beim erstellen eines neuen forums immer "public" - was muss ich aendern, dass ein forum per default immer auf "moderator hidden" gesetzt wird?
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
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
);Code: Alles auswählen
$forum_auth_ary = array(
"auth_view" => AUTH_ACL,
"auth_read" => AUTH_MOD,
"auth_post" => AUTH_MOD,
"auth_reply" => AUTH_MOD,
"auth_edit" => AUTH_MOD,
"auth_delete" => AUTH_MOD,
"auth_sticky" => AUTH_MOD,
"auth_announce" => AUTH_MOD,
"auth_vote" => AUTH_MOD,
"auth_pollcreate" => AUTH_MOD
);