Update of /cvsroot/openfirst/projects
In directory sc8-pr-cvs1:/tmp/cvs-serv27788
Modified Files:
today.php
Log Message:
Added member wrap spacing.
Index: today.php
===================================================================
RCS file: /cvsroot/openfirst/projects/today.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** today.php 1 Sep 2003 17:29:10 -0000 1.5
--- today.php 1 Sep 2003 17:44:48 -0000 1.6
***************
*** 151,155 ****
<td>--</td>
<td><?php echo $project->Description; ?></td>
! <td><?php echo $project->Assigned; ?></td>
</tr>
<?php
--- 151,155 ----
<td>--</td>
<td><?php echo $project->Description; ?></td>
! <td><?php echo str_replace(",", ", ",$project->Assigned); ?></td>
</tr>
<?php
***************
*** 174,178 ****
<td><font color='red'><?php echo $task->TaskName; ?></font></td>
<td><?php echo $task->Description; ?></td>
! <td><?php echo $task->Assigned; ?></td>
</tr>
<?php
--- 174,178 ----
<td><font color='red'><?php echo $task->TaskName; ?></font></td>
<td><?php echo $task->Description; ?></td>
! <td><?php echo str_replace(",", ", ",$task->Assigned); ?></td>
</tr>
<?php
|