summaryrefslogtreecommitdiffstats
path: root/showdependencytree.cgi
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2002-11-22 03:46:16 +0100
committerjustdave%syndicomm.com <>2002-11-22 03:46:16 +0100
commit0615f228a0fec557e754c00935e8319cadf220a5 (patch)
treeeaea259f4293f2385dffcffcae941e8d47b1a8c4 /showdependencytree.cgi
parent0d804e66f40ee8d9de11f7075428ebc1ef162c31 (diff)
downloadbugzilla-0615f228a0fec557e754c00935e8319cadf220a5.tar.gz
bugzilla-0615f228a0fec557e754c00935e8319cadf220a5.tar.xz
Backing out the checkin for bug 180966 (fix warnings in web server error log). This checkin caused commenting on bugs to fail
if timetracking is not enabled.
Diffstat (limited to 'showdependencytree.cgi')
-rwxr-xr-xshowdependencytree.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/showdependencytree.cgi b/showdependencytree.cgi
index 0508f078b..e2e9d52b0 100755
--- a/showdependencytree.cgi
+++ b/showdependencytree.cgi
@@ -164,7 +164,7 @@ sub GetBug {
$bug->{'assignee_email'}) = FetchSQLData();
}
- $bug->{'open'} = $bug->{'exists'} && IsOpenedState($bug->{'status'});
+ $bug->{'open'} = IsOpenedState($bug->{'status'});
$bug->{'dependencies'} = [];
return $bug;