diff options
author | lpsolit%gmail.com <> | 2008-05-21 07:00:57 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2008-05-21 07:00:57 +0200 |
commit | 5fcefed7417cd3580fc0779afb2793fac257d94b (patch) | |
tree | ab1c0e8fedd4a4ca06d51c80261e4171b8e5ecf0 /duplicates.cgi | |
parent | 6df961a57b388986fd2049013a44144126a41db2 (diff) | |
download | bugzilla-5fcefed7417cd3580fc0779afb2793fac257d94b.tar.gz bugzilla-5fcefed7417cd3580fc0779afb2793fac257d94b.tar.xz |
Bug 380756: Remove duplicates.xul (and all the code related to it) - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=LpSolit
Diffstat (limited to 'duplicates.cgi')
-rwxr-xr-x | duplicates.cgi | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/duplicates.cgi b/duplicates.cgi index 32553a39d..06334e22b 100755 --- a/duplicates.cgi +++ b/duplicates.cgi @@ -37,19 +37,6 @@ use Bugzilla::Search; use Bugzilla::Product; my $cgi = Bugzilla->cgi; - -# Go directly to the XUL version of the duplicates report (duplicates.xul) -# if the user specified ctype=xul. Adds params if they exist, and directs -# the user to a signed copy of the script in duplicates.jar if it exists. -if (defined $cgi->param('ctype') && $cgi->param('ctype') eq "xul") { - my $params = CanonicaliseParams($cgi->query_string(), ["format", "ctype"]); - my $url = (-e "duplicates.jar" ? "duplicates.jar!/" : "") . - "duplicates.xul" . ($params ? "?$params" : "") . "\n\n"; - - print $cgi->redirect($url); - exit; -} - my $template = Bugzilla->template; my $vars = {}; |