Update of /cvsroot/phpbt/phpbt/templates/default
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29280/templates/default
Modified Files:
bugdisplay.html
Log Message:
Oops, left a bug in there
Index: bugdisplay.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/bugdisplay.html,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- bugdisplay.html 22 Jan 2005 16:03:49 -0000 1.47
+++ bugdisplay.html 22 Jan 2005 16:08:41 -0000 1.48
@@ -118,7 +118,7 @@
<td><select name="site_id" <?php echo $disabled ?>><?php build_select('site', $site_id) ?></select></td>
</tr><tr>
<td><?php echo translate("Summary"); ?>:</td>
- <td><input type="text" size="30" maxlength="100" name="title" value="<?php echo stripslashes(get_htmlspecialchars($title)) ?>" <?php echo $disabled ?>></td>
+ <td><input type="text" size="30" maxlength="100" name="title" value="<?php echo stripslashes(htmlspecialchars($title)) ?>" <?php echo $disabled ?>></td>
<td><?php echo translate("Status"); ?>:</td>
<td><select name="status_id" <?php echo $disabled ?>><?php build_select('status', $status_id) ?></select></td>
</tr><tr>
|