|
Lines 608-616
sub ModifyRecordWithTemplate {
Link Here
|
| 608 |
if ( $field_number == 1 ) { |
608 |
if ( $field_number == 1 ) { |
| 609 |
# We want to process the first field |
609 |
# We want to process the first field |
| 610 |
$field_numbers = [ 1 ]; |
610 |
$field_numbers = [ 1 ]; |
| 611 |
} elsif ( $to_field and $from_field ne $to_field ) { |
|
|
| 612 |
# If the from and to fields are not the same, we only process the first field. |
| 613 |
$field_numbers = [ 1 ]; |
| 614 |
} |
611 |
} |
| 615 |
} |
612 |
} |
| 616 |
|
613 |
|
| 617 |
- |
|
|