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

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

Return to bug 22048