From: Eloi G. <ada...@us...> - 2004-10-03 07:44:27
|
Update of /cvsroot/phpwsbb/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4457/class Modified Files: Manager.php Log Message: Fixed Bug Report [1039272] "1.0.0 CVS: Monitors cleared message persists" Index: Manager.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Manager.php,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** Manager.php 3 Oct 2004 03:31:13 -0000 1.54 --- Manager.php 3 Oct 2004 06:58:21 -0000 1.55 *************** *** 1125,1130 **** function action() { ! if(PHPWS_Message::isMessage($this->notice)) $this->notice->display(); $this->managerAction(); --- 1125,1132 ---- function action() { ! if(PHPWS_Message::isMessage($this->notice)) { $this->notice->display(); + $this->notice = null; + } $this->managerAction(); |