PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.13
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.13
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/models/fields/FrmFieldPhone.php +3 -2 6.256.13 View file →
@@ -46,9 +46,9 @@
46 46 public function show_primary_options( $args ) {
47 47 $field = $args['field'];
48 48
49 49 include FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/phone/phone-type.php';
50 - FrmFieldsController::show_format_option( $field, true );
50 + FrmFieldsController::show_format_option( $field );
51 51
52 52 parent::show_primary_options( $args );
53 53 }
54 54
@@ -61,12 +61,13 @@
61 61 */
62 62 protected function print_international_option() {
63 63 ?>
64 64 <option
65 - value=""
65 + value="international"
66 66 class="frm_show_upgrade frm_noallow"
67 67 data-upgrade="<?php esc_attr_e( 'International phone field', 'formidable' ); ?>"
68 68 data-medium="international-phone-field"
69 + <?php selected( FrmField::get_option( $this->field, 'format' ), 'international' ); ?>
69 70 >
70 71 <?php esc_html_e( 'International', 'formidable' ); ?>
71 72 </option>
72 73 <?php