|
@@ 493-498 (lines=6) @@
|
| 490 |
|
} |
| 491 |
|
|
| 492 |
|
if ( $f['type'] == 'form' || ( $f['type'] == 'divider' && FrmField::is_option_true( $f['field_options'], 'repeat' ) ) ) { |
| 493 |
|
if ( FrmField::is_option_true( $f['field_options'], 'form_select' ) ) { |
| 494 |
|
$form_select = (int) $f['field_options']['form_select']; |
| 495 |
|
if ( isset( $imported['forms'][ $form_select ] ) ) { |
| 496 |
|
$f['field_options']['form_select'] = $imported['forms'][ $form_select ]; |
| 497 |
|
} |
| 498 |
|
} |
| 499 |
|
} |
| 500 |
|
} |
| 501 |
|
|
|
@@ 515-520 (lines=6) @@
|
| 512 |
|
return; |
| 513 |
|
} |
| 514 |
|
|
| 515 |
|
if ( FrmField::is_option_true_in_array( $f['field_options'], 'get_values_form' ) ) { |
| 516 |
|
$old_form = $f['field_options']['get_values_form']; |
| 517 |
|
if ( isset( $imported['forms'][ $old_form ] ) ) { |
| 518 |
|
$f['field_options']['get_values_form'] = $imported['forms'][ $old_form ]; |
| 519 |
|
} |
| 520 |
|
} |
| 521 |
|
} |
| 522 |
|
|
| 523 |
|
/** |