Ignore:
Timestamp:
23 Mar 2015, 16:47:58 (10 years ago)
Author:
Henrik Bettermann
Message:

Ticket #11 compromise

Redirect to CustomerChangePasswordPage? if PasswordMandate? was used so that customers are reminded of changing the password. But we do not require a password change. Maybe customers feel comfortable with the generated password.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.ikoba/trunk/src/waeup/ikoba/browser/pages.py

    r12540 r12816  
    280280                    #      _('Your personal data record is outdated. Please update.'),
    281281                    #      type='warning')
    282                     self.redirect(self.application_url() + rel_link)
     282                    if camefrom == 'PasswordMandate':
     283                        self.redirect(
     284                            self.application_url() +
     285                            rel_link +
     286                            '/changepassword')
     287                    else:
     288                        self.redirect(self.application_url() + rel_link)
    283289                    return
    284290                if not self.camefrom:
Note: See TracChangeset for help on using the changeset viewer.