aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Setup
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2010-02-27 16:36:57 -0500
committerJoey Hess <joey@gnu.kitenet.net>2010-02-27 16:36:57 -0500
commit6aaa6e0d245e450315a073f62e27c233cefbe9ec (patch)
tree984ad69a61221be720e813222241da8cd5bd3309 /IkiWiki/Setup
parenta12c386c86d000971125d70bf22213fd9595ed45 (diff)
downloadikiwiki-6aaa6e0d245e450315a073f62e27c233cefbe9ec.tar
ikiwiki-6aaa6e0d245e450315a073f62e27c233cefbe9ec.tar.gz
Fix admin openid detection in setup automator, and avoid prompting for a password.
Diffstat (limited to 'IkiWiki/Setup')
-rw-r--r--IkiWiki/Setup/Automator.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Setup/Automator.pm b/IkiWiki/Setup/Automator.pm
index 79a610e20..9da594e99 100644
--- a/IkiWiki/Setup/Automator.pm
+++ b/IkiWiki/Setup/Automator.pm
@@ -144,7 +144,7 @@ sub import (@) {
# Create admin user(s).
foreach my $admin (@{$config{adminuser}}) {
- next if $admin=~/^http\?:\/\//; # openid
+ next if defined IkiWiki::openiduser($admin);
# Prompt for password w/o echo.
my ($password, $password2);