Do some sanity checking on the entered bug number.

This commit is contained in:
terry%mozilla.org 1999-05-10 22:52:43 +00:00
Родитель 0edb173c36
Коммит 6cefd2890b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -33,7 +33,7 @@ if ($::FORM{'GoAheadAndLogIn'}) {
print "Content-type: text/html\n";
print "\n";
if (!defined $::FORM{'id'}) {
if (!defined $::FORM{'id'} || $::FORM{'id'} !~ /^\s*\d+\s*$/) {
print "<H2>Search By Bug Number</H2>\n";
print "<FORM METHOD=GET ACTION=\"show_bug.cgi\">\n";
print "You may find a single bug by entering its bug id here: \n";