Lines 283-288
sub add_form {
Link Here
|
283 |
push @{$field_selection}, add_fields('problem_reports'); |
283 |
push @{$field_selection}, add_fields('problem_reports'); |
284 |
} |
284 |
} |
285 |
|
285 |
|
|
|
286 |
if ( $module eq 'members' and $code and $code eq 'OPAC_REG_VERIFY' ){ |
287 |
$field_selection = [ |
288 |
{ |
289 |
'text' => '---BORROWER_MODIFICATIONS---', |
290 |
'value' => '' |
291 |
}, |
292 |
{ |
293 |
'value' => 'borrower_modifications.verification_token', |
294 |
'text' => 'borrower_modifications.verification_token' |
295 |
}, |
296 |
]; |
297 |
} |
298 |
|
286 |
if ( $module eq 'ill' ) { |
299 |
if ( $module eq 'ill' ) { |
287 |
push @{$field_selection}, add_fields('illrequests'); |
300 |
push @{$field_selection}, add_fields('illrequests'); |
288 |
} |
301 |
} |
289 |
- |
|
|