summaryrefslogtreecommitdiffstats
path: root/xml.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'xml.cgi')
-rwxr-xr-xxml.cgi7
1 files changed, 5 insertions, 2 deletions
diff --git a/xml.cgi b/xml.cgi
index 51093890e..8b71b3837 100755
--- a/xml.cgi
+++ b/xml.cgi
@@ -1,4 +1,4 @@
-#!/usr/bonsaitools/bin/perl -w
+#!/usr/bonsaitools/bin/perl -wT
# -*- Mode: perl; indent-tabs-mode: nil -*-
#
# The contents of this file are subject to the Mozilla Public
@@ -23,10 +23,13 @@
use diagnostics;
use strict;
+
+use lib qw(.);
+
use Bug;
require "CGI.pl";
-if (!defined $::FORM{'id'} || $::FORM{'id'} !~ /^\s*\d+(,\d+)*\s*$/) {
+if (!defined $::FORM{'id'} || !$::FORM{'id'}) {
print "Content-type: text/html\n\n";
PutHeader("Display as XML");
print "<FORM METHOD=GET ACTION=\"xml.cgi\">\n";