aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/CGI.pm
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-04-25 20:24:44 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-04-25 20:24:44 +0000
commit5cd32c2eeeafc5e9f3feae7983fc48a9711462a3 (patch)
treea01a3e8d55ed3979ebcff0a00b63e00bd2fa21d3 /IkiWiki/CGI.pm
parent5ae9c4f5d57d15343fb59f21e16317c712d80a44 (diff)
downloadikiwiki-5cd32c2eeeafc5e9f3feae7983fc48a9711462a3.tar
ikiwiki-5cd32c2eeeafc5e9f3feae7983fc48a9711462a3.tar.gz
- fix typo
- avoid sending commit mails to the user who made the commit
Diffstat (limited to 'IkiWiki/CGI.pm')
-rw-r--r--IkiWiki/CGI.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/CGI.pm b/IkiWiki/CGI.pm
index 067886c70..e5cee9cb9 100644
--- a/IkiWiki/CGI.pm
+++ b/IkiWiki/CGI.pm
@@ -118,7 +118,7 @@ sub cgi_signin ($$) { #{{{
validate => sub {
my $name=shift;
length $name &&
- $name=~/$wiki_file_regexp/ &&
+ $name=~/$config{wiki_file_regexp}/ &&
! userinfo_get($name, "regdate");
},
);