@@ 411-416 (lines=6) @@ | ||
408 | } |
|
409 | ||
410 | if ( $f['type'] == 'form' || ( $f['type'] == 'divider' && FrmField::is_option_true( $f['field_options'], 'repeat' ) ) ) { |
|
411 | if ( FrmField::is_option_true( $f['field_options'], 'form_select' ) ) { |
|
412 | $form_select = $f['field_options']['form_select']; |
|
413 | if ( isset( $imported['forms'][ $form_select ] ) ) { |
|
414 | $f['field_options']['form_select'] = $imported['forms'][ $form_select ]; |
|
415 | } |
|
416 | } |
|
417 | } |
|
418 | } |
|
419 | ||
@@ 432-437 (lines=6) @@ | ||
429 | return; |
|
430 | } |
|
431 | ||
432 | if ( FrmField::is_option_true_in_array( $f['field_options'], 'get_values_form' ) ) { |
|
433 | $old_form = $f['field_options']['get_values_form']; |
|
434 | if ( isset( $imported['forms'][ $old_form ] ) ) { |
|
435 | $f['field_options']['get_values_form'] = $imported['forms'][ $old_form ]; |
|
436 | } |
|
437 | } |
|
438 | } |
|
439 | ||
440 | /** |