summaryrefslogtreecommitdiffstats
path: root/page.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'page.cgi')
-rwxr-xr-xpage.cgi13
1 files changed, 4 insertions, 9 deletions
diff --git a/page.cgi b/page.cgi
index 6e78317fc..b68a9313b 100755
--- a/page.cgi
+++ b/page.cgi
@@ -42,19 +42,14 @@ Bugzilla->login();
my $cgi = Bugzilla->cgi;
-my $id = $cgi->param('id');
-if ($id) {
+if ($::FORM{'id'}) {
# Remove all dodgy chars, and split into name and ctype.
- $id =~ s/[^\w\-\.]//g;
- $id =~ /(.*)\.(.*)/;
- if (!$2) {
- # if this regexp fails to match completely, something bad came in
- ThrowCodeError("bad_page_cgi_id", { "page_id" => $id });
- }
+ $::FORM{'id'} =~ s/[^\w\-\.]//g;
+ $::FORM{'id'} =~ /(.*)\.(.*)/;
my $format = GetFormat("pages/$1", undef, $2);
- $cgi->param('id', $id);
+ $vars->{'form'} = \%::FORM;
print $cgi->header($format->{'ctype'});