if ($form->submitted eq "Save Preferences" && $form->validate) {
my $user_name=$form->field('name');
foreach my $field (qw(password)) {
- if (defined $form->field($field) && length $form->field($field)) {
+ if (defined $form->field($field)) {
IkiWiki::userinfo_set($user_name, $field, $form->field($field)) ||
error("failed to set $field");
}
styled using the stylesheet, rather than by creating signin and prefs
templates.
* Make the openid login form nicely styled.
+ * Fix a bug that prevented clearing email or subscriptions.
- -- Joey Hess <joeyh@debian.org> Mon, 30 Apr 2007 17:53:10 -0400
+ -- Joey Hess <joeyh@debian.org> Mon, 30 Apr 2007 18:04:02 -0400
ikiwiki (2.00) unstable; urgency=low
If a user has an email address in their prefs, and they try to clear it,
the prefs seem to save ok, and the email seems to be gone, but reloading
the prefs page will reveal the old email address.
+
+Also affected subscriptions.. [[done]]