diff options
author | justdave%syndicomm.com <> | 2001-10-13 10:36:13 +0200 |
---|---|---|
committer | justdave%syndicomm.com <> | 2001-10-13 10:36:13 +0200 |
commit | 430a652fcfc2ab50665fadd47fd3689d24446348 (patch) | |
tree | 8d2c19bac3069c6aa4755ee79e1f80e964b5c700 /buglist.cgi | |
parent | 5c8613183f5779686e739bc9a470c770cf8ff51d (diff) | |
download | bugzilla-430a652fcfc2ab50665fadd47fd3689d24446348.tar.gz bugzilla-430a652fcfc2ab50665fadd47fd3689d24446348.tar.xz |
Fix for bug 104516: No code changes in this patch, all this checkin does is remove all tabs from the bugzilla source and replace it with the appropriate number of spaces (in most cases 8) to line up with existing code. This is part of the effort to bring the existing codebase up to par with our style guidelines.
Patch by Jake Steehagen <jake@acutex.net>
r= justdave x2
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/buglist.cgi b/buglist.cgi index 048d4582a..04a9e8892 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -479,23 +479,23 @@ sub GenerateSQL { } }, - "^dependson," => sub { + "^dependson," => sub { my $table = "dependson_" . $chartid; - push(@supptables, "dependencies $table"); - $ff = "$table.$f"; - $ref = $funcsbykey{",$t"}; - &$ref; + push(@supptables, "dependencies $table"); + $ff = "$table.$f"; + $ref = $funcsbykey{",$t"}; + &$ref; push(@wherepart, "$table.blocked = bugs.bug_id"); - }, + }, - "^blocked," => sub { + "^blocked," => sub { my $table = "blocked_" . $chartid; - push(@supptables, "dependencies $table"); - $ff = "$table.$f"; - $ref = $funcsbykey{",$t"}; - &$ref; + push(@supptables, "dependencies $table"); + $ff = "$table.$f"; + $ref = $funcsbykey{",$t"}; + &$ref; push(@wherepart, "$table.dependson = bugs.bug_id"); - }, + }, ",equals" => sub { @@ -831,7 +831,7 @@ CMD: for ($::FORM{'cmdtype'}) { last CMD; }; /^editnamed$/ && do { - my $url = "query.cgi?" . LookupNamedQuery($::FORM{"namedcmd"}); + my $url = "query.cgi?" . LookupNamedQuery($::FORM{"namedcmd"}); print qq{Content-type: text/html Refresh: 0; URL=$url @@ -971,7 +971,7 @@ DefCol("summary", "substring(bugs.short_desc, 1, 60)", "Summary", "bugs.short_de DefCol("summaryfull", "bugs.short_desc", "Summary", "bugs.short_desc", 1); DefCol("status_whiteboard", "bugs.status_whiteboard", "StatusSummary", "bugs.status_whiteboard", 1); DefCol("component", "substring(bugs.component, 1, 8)", "Comp", - "bugs.component"); + "bugs.component"); DefCol("product", "substring(bugs.product, 1, 8)", "Product", "bugs.product"); DefCol("version", "substring(bugs.version, 1, 5)", "Vers", "bugs.version"); DefCol("os", "substring(bugs.op_sys, 1, 4)", "OS", "bugs.op_sys"); |