Globale Ankündigung - fix for phpbb 2.0.18 plus
Verfasst: 22.01.2006 15:40
So, da ich selber Probleme damit hatt ewill ichs euch ersparen und poste hier mal ein fix den ich gefunden habe....
To make the Global Announcement working properly on any new 2.0.18, 2.0.19 or board with a higher version of phpBB, please use this fix.
posting.php
For Global Announcement, that line needs to be changed to:
To make the Global Announcement working properly on any new 2.0.18, 2.0.19 or board with a higher version of phpBB, please use this fix.
posting.php
Code: Alles auswählen
##
##----------[ FIND ]-------------------------------------
##
$topic_type = ( in_array($topic_type, array(POST_NORMAL, POST_STICKY, POST_ANNOUNCE)) ) ? $topic_type : POST_NORMAL;
For Global Announcement, that line needs to be changed to:
Code: Alles auswählen
$topic_type = ( in_array($topic_type, array(POST_NORMAL, POST_STICKY, POST_ANNOUNCE, POST_GLOBAL_ANNOUNCE)) ) ? $topic_type : POST_NORMAL;