PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.21
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.21
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/views/solutions/_import.php +1 -3 6.296.21 View file →
@@ -11,11 +11,10 @@
11 11 $info['url'] = $xml;
12 12 }
13 13
14 14 $disabled = isset( $imported[ $info['form'] ] ) ? ' disabled' : '';
15 - $url = $info['url'] ?? '';
15 + $url = isset( $info['url'] ) ? $info['url'] : '';
16 16 $value = $importing === 'form' ? $info['form'] : $info['key'];
17 -
18 17 if ( ! isset( $info['img'] ) ) {
19 18 ?>
20 19 <input type="hidden" name="<?php echo esc_attr( $importing ); ?>[<?php echo esc_attr( $info['form'] ); ?>]" value="<?php echo esc_attr( $value ); ?>" <?php echo esc_attr( $disabled ); ?>/>
21 20 <?php
@@ -31,9 +30,8 @@
31 30 <label>
32 31 <input type="radio" name="<?php echo esc_attr( $importing . ( $importing === 'view' ? '[' . $info['form'] . ']' : '' ) ); ?>" value="<?php echo esc_attr( $value ); ?>"
33 32 <?php
34 33 echo esc_attr( $disabled );
35 -
36 34 if ( ! $selected && empty( $disabled ) ) {
37 35 echo ' checked="checked"';
38 36 $selected = $info['form'];
39 37 }