|
From: Ulf E. <ulf...@us...> - 2005-10-02 19:25:04
|
Update of /cvsroot/phpbt/phpbt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17927 Modified Files: bug.php CHANGELOG Log Message: Allow admins and project admins to delete bugs Index: bug.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/bug.php,v retrieving revision 1.150 retrieving revision 1.151 diff -u -r1.150 -r1.151 --- bug.php 27 Sep 2005 19:49:42 -0000 1.150 +++ bug.php 1 Oct 2005 15:19:56 -0000 1.151 @@ -818,6 +818,11 @@ show_projects(); } break; + case 'del': + $perm->check_proj(); + delete_bug(check_id($_GET['bugid'])); + header("Location: query.php"); + break; case 'show': show_bug(check_id($_GET['bugid'])); break; Index: CHANGELOG =================================================================== RCS file: /cvsroot/phpbt/phpbt/CHANGELOG,v retrieving revision 1.72 retrieving revision 1.73 diff -u -r1.72 -r1.73 --- CHANGELOG 28 Sep 2005 19:51:26 -0000 1.72 +++ CHANGELOG 1 Oct 2005 15:19:56 -0000 1.73 @@ -10,6 +10,7 @@ : Fixed some permissions related issues for project admins : Added "priority" and "dependency" to the bug history : Added the ability to update several bugs at once +: Allow admins and project admins to delete bugs -- 1.0 -- 3 Aug 2005 : Added links from project summary on home page (Phil Davis). |