summaryrefslogtreecommitdiffstats
path: root/showdependencygraph.cgi
diff options
context:
space:
mode:
authormatty%chariot.net.au <>2001-11-21 17:09:32 +0100
committermatty%chariot.net.au <>2001-11-21 17:09:32 +0100
commitdd8f8cedb0637e5afb46bf50e3e6569520b88f7b (patch)
treeb1537c906fcd063c6e5499b2864cea7ef6a7e9ea /showdependencygraph.cgi
parent6eb9bbe32980fae1320741d97028cf49c5f3f6a9 (diff)
downloadbugzilla-dd8f8cedb0637e5afb46bf50e3e6569520b88f7b.tar.gz
bugzilla-dd8f8cedb0637e5afb46bf50e3e6569520b88f7b.tar.xz
Bug 110276:SQL error in globals.pl.
Patch by me, r=bbaetz,caillon.
Diffstat (limited to 'showdependencygraph.cgi')
-rwxr-xr-xshowdependencygraph.cgi3
1 files changed, 2 insertions, 1 deletions
diff --git a/showdependencygraph.cgi b/showdependencygraph.cgi
index c62506c45..a10afb896 100755
--- a/showdependencygraph.cgi
+++ b/showdependencygraph.cgi
@@ -124,7 +124,8 @@ node [URL="${urlbase}show_bug.cgi?id=\\N", style=filled, color=lightgrey]
my $summary = "";
my $stat;
if ($::FORM{'showsummary'}) {
- SendSQL(SelectVisible("select bug_status, short_desc from bugs where bug_id = $k",
+ SendSQL(SelectVisible("SELECT bug_status, short_desc FROM bugs " .
+ "WHERE bugs.bug_id = $k",
$::userid,
$::usergroupset));
($stat, $summary) = (FetchSQLData());