|
From: Benjamin C. <bc...@us...> - 2003-06-21 13:43:01
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin
In directory sc8-pr-cvs1:/tmp/cvs-serv9612/templates/default/admin
Modified Files:
statuslist.html
Log Message:
Fixes bug #664510 - Disallow deleting of the bug status used for new bugs
Index: statuslist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/statuslist.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- statuslist.html 18 May 2002 03:00:50 -0000 1.9
+++ statuslist.html 21 Jun 2003 13:42:57 -0000 1.10
@@ -27,7 +27,7 @@
<td> {$statuses[status].status_desc}</td>
<td align="center">{$statuses[status].sort_order}</td>
<td align="center">
- {if not $statuses[status].bug_count}
+ {if not $statuses[status].bug_count and $statuses[status].status_id neq BUG_UNCONFIRMED}
<a href="{$smarty.server.PHP_SELF}?op=del&status_id={$statuses[status].status_id}" onClick="return confirm('Are you sure you want to delete this status?')">Delete</a>
{/if}
</td>
|