if ($form->submitted eq "Register" || $form->submitted eq "Create Account") {
$form->title("register");
$form->text("");
- $form->field(name => "name", comment => "use FirstnameLastName");
$form->fields(qw(do title page subpage from name password confirm_password email));
$form->field(name => "confirm_password", type => "password");
$form->field(name => "email", type => "text");
}
# And make sure the entered name exists when logging
# in or sending email, and does not when registering.
- if ($form->submitted eq 'Create Account') {
+ if ($form->submitted eq 'Create Account' ||
+ $form->submitted eq 'Register') {
$form->field(
name => "name",
validate => sub {
* Fix issue with aggregate plugin updating expired pages.
* Avoid syntax errors in templates used by the template plugin crashing
ikiwiki.
+ * Enable utf8 file IO in aggregate plugin.
+ * Fix some issues with the new registration form.
- -- Joey Hess <joeyh@debian.org> Sun, 5 Nov 2006 18:41:06 -0500
+ -- Joey Hess <joeyh@debian.org> Wed, 8 Nov 2006 15:13:40 -0500
ikiwiki (1.32) unstable; urgency=low