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