Author: earle Date: 2005-07-21 16:20:13 +0100 (Thu, 21 Jul 2005) New Revision: 658
Modified: trunk/newpage.cgi Log: add underscore to bad characters list
Modified: trunk/newpage.cgi =================================================================== --- trunk/newpage.cgi 2005-07-21 15:11:35 UTC (rev 657) +++ trunk/newpage.cgi 2005-07-21 15:20:13 UTC (rev 658) @@ -9,7 +9,7 @@ use OpenGuides::Utils; use URI::Escape;
-my @badchars = qw( & ? ); +my @badchars = qw( & ? _ ); push @badchars, '#'; # Avoid warning about possible comments in qw()
my $q = CGI->new;