|
From: Wendall C. <wen...@us...> - 2005-01-05 16:39:22
|
Update of /cvsroot/phpwsbb/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22118/class Modified Files: Message.php Thread.php Log Message: small syntax fixes Index: Thread.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Thread.php,v retrieving revision 1.68 retrieving revision 1.69 diff -C2 -d -r1.68 -r1.69 *** Thread.php 5 Jan 2005 15:50:32 -0000 1.68 --- Thread.php 5 Jan 2005 16:39:08 -0000 1.69 *************** *** 254,257 **** --- 254,258 ---- // Need to cycle through all messages and view $content = ''; + $bg = NULL; foreach($this->messages as $mid) { $message = new PHPWSBB_Message($mid, $this->isModerator); *************** *** 336,339 **** --- 337,341 ---- $admin_email = $_SESSION['PHPWSBB_Manager']->_admin_email; if (empty($admin_email)) { + $user_contact = NULL; extract(PHPWS_User::getSettings()); $admin_email = $user_contact; Index: Message.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Message.php,v retrieving revision 1.75 retrieving revision 1.76 diff -C2 -d -r1.75 -r1.76 *** Message.php 5 Jan 2005 00:45:46 -0000 1.75 --- Message.php 5 Jan 2005 16:39:07 -0000 1.76 *************** *** 459,462 **** --- 459,463 ---- $admin_email = $_SESSION['PHPWSBB_Manager']->_admin_email; if (empty($admin_email)) { + $user_contact = NULL; extract(PHPWS_User::getSettings()); $admin_email = $user_contact; *************** *** 597,600 **** --- 598,602 ---- $admin_email = $_SESSION['PHPWSBB_Manager']->_admin_email; if (empty($admin_email)) { + $user_contact = NULL; extract(PHPWS_User::getSettings()); $admin_email = $user_contact; |