summaryrefslogtreecommitdiffstats
path: root/duplicates.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'duplicates.cgi')
-rwxr-xr-xduplicates.cgi13
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 = {};