[Openfirst-cvscommit] projects updates.php,1.9,1.10
Brought to you by:
xtimg
From: <dav...@us...> - 2003-11-01 17:02:36
|
Update of /cvsroot/openfirst/projects In directory sc8-pr-cvs1:/tmp/cvs-serv11105 Modified Files: updates.php Log Message: Update e-mailer now includes meetings listed for the current day. Index: updates.php =================================================================== RCS file: /cvsroot/openfirst/projects/updates.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** updates.php 23 Oct 2003 13:43:08 -0000 1.9 --- updates.php 1 Nov 2003 17:02:33 -0000 1.10 *************** *** 50,54 **** <div align='center'>Notes commited on <strong>".date('F j, Y',time())."</strong></div></th> </tr> ! </table>"; // Run through the current list of groups to preview there related information --- 50,82 ---- <div align='center'>Notes commited on <strong>".date('F j, Y',time())."</strong></div></th> </tr> ! </table><br><br>"; ! ! // Run through meeting that have been submitted for today ! $message .= "<table width='100%' border='0' cellspacing='0' cellpadding='6'> ! <tr> ! <td bgcolor='#CCCCCC'> <div align='center'><font color='#000000'><strong>Todays Meeting Notes</strong></font></div></td> ! </tr> ! </table> ! <table width='100%'> ! <tr> ! <td width='6%' bgcolor='#999999'> </td> ! <td width='19%' bgcolor='#999999'>Arranged For</td> ! <td width='54%' bgcolor='#999999'>Notes</td> ! <td width='21%' bgcolor='#999999'>Absent Members</td> ! </tr>"; ! ! $meetingquery = ofirst_dbquery("SELECT * FROM ofirst_projects_meetings"); ! while($meetings = ofirst_dbfetch_object($meetingquery)){ ! if($selectdate == date("F j, Y",$meetings->ForDate)){ ! $message .= "<tr> ! <td>$home/$basepath/members/icons/actions/project_open.png/icons/apps/date.png</td> ! <td>".$meetings->ArrangedFor."</td> ! <td>".$meetings->Notes."</td> ! <td>".$meetings->AbsentList."</td> ! </tr>"; ! } ! } ! ! $message .= "</table><br><br>"; // Run through the current list of groups to preview there related information |