diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-07-06 02:42:57 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-07-06 02:42:57 +0200 |
commit | ba4585ae8a1c63a49e40461d2e2efc12bc75c58a (patch) | |
tree | 8dc9797b39e698089785eef1e6a2ca55e094934b /showdependencygraph.cgi | |
parent | 4e7c28de087834ba8fca4350a01798c1f9732f23 (diff) | |
download | bugzilla-ba4585ae8a1c63a49e40461d2e2efc12bc75c58a.tar.gz bugzilla-ba4585ae8a1c63a49e40461d2e2efc12bc75c58a.tar.xz |
Bug 486292: Change the default workflow to UNCONFIRMED, CONFIRMED,
IN_PROGRESS, RESOLVED, VERIFIED.
r=LpSolit, a=mkanat
Diffstat (limited to 'showdependencygraph.cgi')
-rwxr-xr-x | showdependencygraph.cgi | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi index 5fadce998..162dd2afb 100755 --- a/showdependencygraph.cgi +++ b/showdependencygraph.cgi @@ -199,9 +199,6 @@ my $sth = $dbh->prepare( foreach my $k (keys(%seen)) { # Retrieve bug information from the database my ($stat, $resolution, $summary) = $dbh->selectrow_array($sth, undef, $k); - $stat ||= 'NEW'; - $resolution ||= ''; - $summary ||= ''; # Resolution and summary are shown only if user can see the bug if (!Bugzilla->user->can_see_bug($k)) { |