|
Lines 1088-1094
sub set_password {
Link Here
|
| 1088 |
module => 'members', |
1088 |
module => 'members', |
| 1089 |
letter_code => 'PASSWORD_CHANGE', |
1089 |
letter_code => 'PASSWORD_CHANGE', |
| 1090 |
branchcode => $self_from_storage->branchcode, |
1090 |
branchcode => $self_from_storage->branchcode, |
| 1091 |
, |
1091 |
|
| 1092 |
lang => $self_from_storage->lang || 'default', |
1092 |
lang => $self_from_storage->lang || 'default', |
| 1093 |
tables => { |
1093 |
tables => { |
| 1094 |
'branches' => $self_from_storage->branchcode, |
1094 |
'branches' => $self_from_storage->branchcode, |
|
Lines 2582-2588
Or setter FIXME
Link Here
|
| 2582 |
=cut |
2582 |
=cut |
| 2583 |
|
2583 |
|
| 2584 |
sub extended_attributes { |
2584 |
sub extended_attributes { |
| 2585 |
my ( $self, $attributes ) = @_; |
2585 |
my ( $self, $attributes, $options ) = @_; |
| 2586 |
|
2586 |
|
| 2587 |
if ($attributes) { # setter |
2587 |
if ($attributes) { # setter |
| 2588 |
my %attribute_changes; |
2588 |
my %attribute_changes; |
|
Lines 2674-2680
sub extended_attributes {
Link Here
|
| 2674 |
'borrower_attribute_types_branches.b_branchcode' => undef, |
2674 |
'borrower_attribute_types_branches.b_branchcode' => undef, |
| 2675 |
}; |
2675 |
}; |
| 2676 |
|
2676 |
|
| 2677 |
if ( $interface eq 'opac' ) { |
2677 |
if ( $interface eq 'opac' || $options->{act_as_opac} ) { |
| 2678 |
$params->{opac_editable} = 1; |
2678 |
$params->{opac_editable} = 1; |
| 2679 |
} |
2679 |
} |
| 2680 |
|
2680 |
|