Lines 537-543
if ((!$nok) and $nodouble and ($op eq 'insert' or $op eq 'save')){
Link Here
|
537 |
# updating any columns in the borrowers table, |
537 |
# updating any columns in the borrowers table, |
538 |
# which can happen if we're only editing the |
538 |
# which can happen if we're only editing the |
539 |
# patron attributes or messaging preferences sections |
539 |
# patron attributes or messaging preferences sections |
540 |
$patron->update_password($newdata{password}); # If != **** or '' # test here? |
540 |
|
|
|
541 |
$patron->update_password($newdata{userid}, $newdata{password}); |
542 |
|
541 |
if (C4::Context->preference('ExtendedPatronAttributes') and $input->param('setting_extended_patron_attributes')) { |
543 |
if (C4::Context->preference('ExtendedPatronAttributes') and $input->param('setting_extended_patron_attributes')) { |
542 |
C4::Members::Attributes::SetBorrowerAttributes($borrowernumber, $extended_patron_attributes); |
544 |
C4::Members::Attributes::SetBorrowerAttributes($borrowernumber, $extended_patron_attributes); |
543 |
} |
545 |
} |
544 |
- |
|
|