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;