diff options
author | matty%chariot.net.au <> | 2001-11-21 16:09:32 +0000 |
---|---|---|
committer | matty%chariot.net.au <> | 2001-11-21 16:09:32 +0000 |
commit | dd8f8cedb0637e5afb46bf50e3e6569520b88f7b (patch) | |
tree | b1537c906fcd063c6e5499b2864cea7ef6a7e9ea /showdependencygraph.cgi | |
parent | Added blurb about unified diffs. (diff) | |
download | bugzilla-dd8f8cedb0637e5afb46bf50e3e6569520b88f7b.tar.gz bugzilla-dd8f8cedb0637e5afb46bf50e3e6569520b88f7b.tar.bz2 bugzilla-dd8f8cedb0637e5afb46bf50e3e6569520b88f7b.zip |
Bug 110276:SQL error in globals.pl.
Patch by me, r=bbaetz,caillon.
Diffstat (limited to 'showdependencygraph.cgi')
-rwxr-xr-x | showdependencygraph.cgi | 3 |
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()); |