View | Details | Raw Unified | Return to bug 21992
Collapse All | Expand All

(-)a/members/memberentry.pl (-2 / +2 lines)
Lines 536-542 if ((!$nok) and $nodouble and ($op eq 'insert' or $op eq 'save')){ Link Here
536
                                                                # which can happen if we're only editing the
536
                                                                # which can happen if we're only editing the
537
                                                                # patron attributes or messaging preferences sections
537
                                                                # patron attributes or messaging preferences sections
538
538
539
        $patron->update_password($newdata{userid}, $newdata{password});
539
        # should never raise an exception as password validity is checked above
540
        $patron->set_password( $newdata{password} );
540
541
541
        if (C4::Context->preference('ExtendedPatronAttributes') and $input->param('setting_extended_patron_attributes')) {
542
        if (C4::Context->preference('ExtendedPatronAttributes') and $input->param('setting_extended_patron_attributes')) {
542
            C4::Members::Attributes::SetBorrowerAttributes($borrowernumber, $extended_patron_attributes);
543
            C4::Members::Attributes::SetBorrowerAttributes($borrowernumber, $extended_patron_attributes);
543
- 

Return to bug 21992