aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/passwordauth.pm
diff options
context:
space:
mode:
authorjoshtriplett <joshtriplett@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-04-30 04:08:06 +0000
committerjoshtriplett <joshtriplett@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-04-30 04:08:06 +0000
commitfafaa119cfec08699472af1b5896ccba94e76099 (patch)
treebfbd0368e6c489318ce73ad73defc0bb9371dcaf /IkiWiki/Plugin/passwordauth.pm
parentd52450ecfffa09f3e511dc17e6c1c51428f0be7d (diff)
downloadikiwiki-fafaa119cfec08699472af1b5896ccba94e76099.tar
ikiwiki-fafaa119cfec08699472af1b5896ccba94e76099.tar.gz
Revert passwordauth fieldset and doc to avoid 2.0 regressions; need to re-evaluate after 2.0.
Diffstat (limited to 'IkiWiki/Plugin/passwordauth.pm')
-rw-r--r--IkiWiki/Plugin/passwordauth.pm8
1 files changed, 2 insertions, 6 deletions
diff --git a/IkiWiki/Plugin/passwordauth.pm b/IkiWiki/Plugin/passwordauth.pm
index dac649bc8..d1a965dc8 100644
--- a/IkiWiki/Plugin/passwordauth.pm
+++ b/IkiWiki/Plugin/passwordauth.pm
@@ -21,12 +21,8 @@ sub formbuilder_setup (@) { #{{{
my $cgi=$params{cgi};
if ($form->title eq "signin" || $form->title eq "register") {
- my %fieldset = ();
- if ($form->title eq "signin") {
- $fieldset{"fieldset"} = gettext("Log in with")." ".htmllink("", "", "passwordauth", noimageinline => 1);
- }
- $form->field(name => "name", required => 0, size => 50, %fieldset);
- $form->field(name => "password", type => "password", required => 0, %fieldset);
+ $form->field(name => "name", required => 0, size => 50);
+ $form->field(name => "password", type => "password", required => 0);
if ($form->submitted eq "Register" || $form->submitted eq "Create Account") {
$form->field(name => "confirm_password", type => "password");