|
From: Benjamin C. <bc...@us...> - 2003-09-01 13:38:12
|
Update of /cvsroot/phpbt/phpbt/templates/default
In directory sc8-pr-cvs1:/tmp/cvs-serv14940/templates/default
Modified Files:
Tag: htmltemplates
projectlist.html
Log Message:
Fixed a bug
Index: projectlist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/projectlist.html,v
retrieving revision 1.3.6.1
retrieving revision 1.3.6.2
diff -u -r1.3.6.1 -r1.3.6.2
--- projectlist.html 30 Aug 2003 22:00:34 -0000 1.3.6.1
+++ projectlist.html 1 Sep 2003 13:38:04 -0000 1.3.6.2
@@ -7,7 +7,7 @@
<?php printf('<a href="bug.php?op=add&project=%d">%s</a>:', $projects[$i]['project_id'], stripslashes($projects[$i]['project_name'])); ?>
</td>
<td valign="top">
- <?php echo nl2br(stripslashes($projects[$i]['project_desc']));
+ <?php echo nl2br(stripslashes($projects[$i]['project_desc'])); ?>
</td>
</tr>
<?php } ?>
|