|
@@ 420-425 (lines=6) @@
|
| 417 |
|
} |
| 418 |
|
|
| 419 |
|
if ( $f['type'] == 'form' || ( $f['type'] == 'divider' && FrmField::is_option_true( $f['field_options'], 'repeat' ) ) ) { |
| 420 |
|
if ( FrmField::is_option_true( $f['field_options'], 'form_select' ) ) { |
| 421 |
|
$form_select = (int) $f['field_options']['form_select']; |
| 422 |
|
if ( isset( $imported['forms'][ $form_select ] ) ) { |
| 423 |
|
$f['field_options']['form_select'] = $imported['forms'][ $form_select ]; |
| 424 |
|
} |
| 425 |
|
} |
| 426 |
|
} |
| 427 |
|
} |
| 428 |
|
|
|
@@ 441-446 (lines=6) @@
|
| 438 |
|
return; |
| 439 |
|
} |
| 440 |
|
|
| 441 |
|
if ( FrmField::is_option_true_in_array( $f['field_options'], 'get_values_form' ) ) { |
| 442 |
|
$old_form = $f['field_options']['get_values_form']; |
| 443 |
|
if ( isset( $imported['forms'][ $old_form ] ) ) { |
| 444 |
|
$f['field_options']['get_values_form'] = $imported['forms'][ $old_form ]; |
| 445 |
|
} |
| 446 |
|
} |
| 447 |
|
} |
| 448 |
|
|
| 449 |
|
/** |