|
@@ 484-489 (lines=6) @@
|
| 481 |
|
} |
| 482 |
|
|
| 483 |
|
if ( $f['type'] == 'form' || ( $f['type'] == 'divider' && FrmField::is_option_true( $f['field_options'], 'repeat' ) ) ) { |
| 484 |
|
if ( FrmField::is_option_true( $f['field_options'], 'form_select' ) ) { |
| 485 |
|
$form_select = (int) $f['field_options']['form_select']; |
| 486 |
|
if ( isset( $imported['forms'][ $form_select ] ) ) { |
| 487 |
|
$f['field_options']['form_select'] = $imported['forms'][ $form_select ]; |
| 488 |
|
} |
| 489 |
|
} |
| 490 |
|
} |
| 491 |
|
} |
| 492 |
|
|
|
@@ 506-511 (lines=6) @@
|
| 503 |
|
return; |
| 504 |
|
} |
| 505 |
|
|
| 506 |
|
if ( FrmField::is_option_true_in_array( $f['field_options'], 'get_values_form' ) ) { |
| 507 |
|
$old_form = $f['field_options']['get_values_form']; |
| 508 |
|
if ( isset( $imported['forms'][ $old_form ] ) ) { |
| 509 |
|
$f['field_options']['get_values_form'] = $imported['forms'][ $old_form ]; |
| 510 |
|
} |
| 511 |
|
} |
| 512 |
|
} |
| 513 |
|
|
| 514 |
|
/** |