diff options
author | Joey Hess <joey@kitenet.net> | 2014-11-06 15:00:09 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-11-06 15:00:09 -0400 |
commit | ea8c7a7e024e0574ce0d4f6e42f267256980fba4 (patch) | |
tree | d30ada73ac6ce8d3da6b6d189c25b163fbe3a71f | |
parent | 031ccf618e2fdf50e65ab3a9bffcc7f48c4c2547 (diff) | |
download | ikiwiki-ea8c7a7e024e0574ce0d4f6e42f267256980fba4.tar ikiwiki-ea8c7a7e024e0574ce0d4f6e42f267256980fba4.tar.gz |
openid: Stop suppressing the email field on the Preferences page.
This is needed for notifyemail, and not all openid providers report an
email address, or necessarily the one the user wants to get email.
-rw-r--r-- | IkiWiki/Plugin/openid.pm | 1 | ||||
-rw-r--r-- | debian/changelog | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/openid.pm b/IkiWiki/Plugin/openid.pm index 384af7e98..107c6adcb 100644 --- a/IkiWiki/Plugin/openid.pm +++ b/IkiWiki/Plugin/openid.pm @@ -104,7 +104,6 @@ sub formbuilder_setup (@) { size => 1, force => 1, fieldset => "login", comment => $session->param("name")); - $form->field(name => "email", type => "hidden"); } } diff --git a/debian/changelog b/debian/changelog index a698be8e4..727a8047a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ ikiwiki (3.20141017) UNRELEASED; urgency=medium * Added ikiwiki-comment program. * Add missing build-depends on libcgi-formbuilder-perl, needed for t/relativity.t + * openid: Stop suppressing the email field on the Preferences page. -- Joey Hess <joeyh@debian.org> Mon, 20 Oct 2014 12:04:49 -0400 |