|
Lines 267-272
$newdata{'city'} = $input->param('city') if defined($input->param('city'))
Link Here
|
| 267 |
$newdata{'zipcode'} = $input->param('zipcode') if defined($input->param('zipcode')); |
267 |
$newdata{'zipcode'} = $input->param('zipcode') if defined($input->param('zipcode')); |
| 268 |
$newdata{'country'} = $input->param('country') if defined($input->param('country')); |
268 |
$newdata{'country'} = $input->param('country') if defined($input->param('country')); |
| 269 |
|
269 |
|
|
|
270 |
$newdata{'lang'} = $input->param('lang') if defined($input->param('lang')); |
| 271 |
|
| 270 |
# builds default userid |
272 |
# builds default userid |
| 271 |
# userid input text may be empty or missing because of syspref BorrowerUnwantedField |
273 |
# userid input text may be empty or missing because of syspref BorrowerUnwantedField |
| 272 |
if ( ( defined $newdata{'userid'} && $newdata{'userid'} eq '' ) || $check_BorrowerUnwantedField =~ /userid/ ) { |
274 |
if ( ( defined $newdata{'userid'} && $newdata{'userid'} eq '' ) || $check_BorrowerUnwantedField =~ /userid/ ) { |
|
Lines 779-784
if ( defined $min ) {
Link Here
|
| 779 |
); |
781 |
); |
| 780 |
} |
782 |
} |
| 781 |
|
783 |
|
|
|
784 |
if ( C4::Context->preference('TranslateNotices') ) { |
| 785 |
my $translated_languages = C4::Languages::getTranslatedLanguages( 'opac', C4::Context->preference('template') ); |
| 786 |
$template->param( languages => $translated_languages ); |
| 787 |
} |
| 788 |
|
| 782 |
output_html_with_http_headers $input, $cookie, $template->output; |
789 |
output_html_with_http_headers $input, $cookie, $template->output; |
| 783 |
|
790 |
|
| 784 |
sub parse_extended_patron_attributes { |
791 |
sub parse_extended_patron_attributes { |