Update of /cvsroot/openfirst/projects
In directory sc8-pr-cvs1:/tmp/cvs-serv28485
Modified Files:
updates.php
Log Message:
Remove newly added meeting notification option because I have changed my mind to make it its own module.
Index: updates.php
===================================================================
RCS file: /cvsroot/openfirst/projects/updates.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** updates.php 1 Nov 2003 17:02:33 -0000 1.10
--- updates.php 1 Nov 2003 18:26:38 -0000 1.11
***************
*** 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
--- 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
|