Changeset 320 for trunk/newpage.cgi

Show
Ignore:
Timestamp:
01/15/04 11:51:04 (5 years ago)
Author:
earle
Message:

Removed ", !, $, , ~, @, [, ], {, and } from list of forbidden characters, as they are actually valid in OpenGuides node names.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/newpage.cgi

    r166 r320  
    88use URI::Escape; 
    99 
    10 my @badchars = qw( ! " $ % ^ & @ ~ ? { } [ ] ); 
     10my @badchars = qw( & ? ); 
    1111push @badchars, '#'; # Avoid warning about possible comments in qw() 
    1212