Seite 1 von 1

Globale Ankündigung - fix for phpbb 2.0.18 plus

Verfasst: 22.01.2006 15:40
von Prometeus
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

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;  

Verfasst: 22.01.2006 15:52
von DerGonzo
Moin!

Das Problem hatte ich auch:
http://www.phpbb.de/viewtopic.php?t=109819, ist aber bereits erledigt. :-)

Schönen Gruß,
DerGonzo!

Verfasst: 22.01.2006 16:23
von Prometeus
Yau, gut zu wissen. Habe ich net gefunden. Jetzt werd ich mich auf jeden Fall erstmal ans Basteln machen.... :grin:

Verfasst: 18.10.2007 09:44
von ivost69
Genial! :D
Ich habe gestern den Global Announcement Mod installiert und es hat nicht richtig funktioniert. Wenn ich "Globale Ankündigung" angeklickt habe, ist der Beitrag als normaler Beitrag veröffentlicht worden. :-?
Dank dieses Bugfixes hier läuft nun alles einwandfrei!
Super :grin: