diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-08-21 23:40:11 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-08-21 23:40:11 -0400 |
commit | 6cf96b581974b3e59af3289196c4687c2416f35c (patch) | |
tree | 30f08115c64fb443e549a549b8e75e16f7bf0888 /IkiWiki/Setup | |
parent | 15ed67132ee70a3c9c98565dee464a8f968c765c (diff) |
Fix bug in wikiname sanitisation in the setup automator.
Diffstat (limited to 'IkiWiki/Setup')
-rw-r--r-- | IkiWiki/Setup/Automator.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Setup/Automator.pm b/IkiWiki/Setup/Automator.pm index f6eb00f70..a54b53817 100644 --- a/IkiWiki/Setup/Automator.pm +++ b/IkiWiki/Setup/Automator.pm @@ -28,7 +28,7 @@ sub import (@) { #{{{ IkiWiki::Setup::merge({@_}); # Sanitize this to avoid problimatic directory names. - $config{wikiname}=~s/[^-A-Za-z0-9_] //g; + $config{wikiname}=~s/[^-A-Za-z0-9_]//g; if (! length $config{wikiname}) { error gettext("you must enter a wikiname (that contains alphanumerics)"); } |