diff options
-rwxr-xr-x | buglist.cgi | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/buglist.cgi b/buglist.cgi index 20f2051db..34cd9fbeb 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -51,8 +51,8 @@ my $serverpush = 0; ConnectToDatabase(); -# print "Content-type: text/plain\n\n"; # Handy for debugging. -# $::FORM{'debug'} = 1; +#print "Content-type: text/plain\n\n"; # Handy for debugging. +#$::FORM{'debug'} = 1; if (grep(/^cmd-/, keys(%::FORM))) { @@ -434,6 +434,14 @@ sub GenerateSQL { } }, + "^(dependson|blocked)," => sub { + push(@supptables, "dependencies"); + $ff = "dependencies.$f"; + $ref = $funcsbykey{",$t"}; + &$ref; + push(@wherepart, "$term"); + }, + ",equals" => sub { $term = "$ff = $q"; |