Update of /cvsroot/phpwebsite-comm/modules/phpwsbb/class
In directory sc8-pr-cvs1:/tmp/cvs-serv4372/class
Modified Files:
Thread.php
Log Message:
SR #749086: Fixed bug in root message label change
Index: Thread.php
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/phpwsbb/class/Thread.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Thread.php 4 Jun 2003 15:38:03 -0000 1.6
--- Thread.php 4 Jun 2003 18:43:47 -0000 1.7
***************
*** 102,105 ****
--- 102,109 ----
$this->kill();
return;
+ } else {
+ // Update thread label with label of root message
+ $message = new PHPWSBB_Message($this->messages[0]);
+ $this->setLabel($message->getLabel());
}
} else {
|