Changeset 3017821
- Timestamp:
- 01/05/2024 12:59:17 PM (2 years ago)
- Location:
- formidable
- Files:
-
- 12 edited
- 1 copied
-
tags/6.7.2 (copied) (copied from formidable/trunk)
-
tags/6.7.2/classes/helpers/FrmAppHelper.php (modified) (1 diff)
-
tags/6.7.2/classes/helpers/FrmFormsHelper.php (modified) (1 diff)
-
tags/6.7.2/classes/views/frm-settings/permissions.php (modified) (1 diff)
-
tags/6.7.2/formidable.php (modified) (1 diff)
-
tags/6.7.2/languages/formidable.pot (modified) (3 diffs)
-
tags/6.7.2/readme.txt (modified) (2 diffs)
-
trunk/classes/helpers/FrmAppHelper.php (modified) (1 diff)
-
trunk/classes/helpers/FrmFormsHelper.php (modified) (1 diff)
-
trunk/classes/views/frm-settings/permissions.php (modified) (1 diff)
-
trunk/formidable.php (modified) (1 diff)
-
trunk/languages/formidable.pot (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
formidable/tags/6.7.2/classes/helpers/FrmAppHelper.php
r3017166 r3017821 34 34 * @var string 35 35 */ 36 public static $plug_version = '6.7. 1';36 public static $plug_version = '6.7.2'; 37 37 38 38 /** -
formidable/tags/6.7.2/classes/helpers/FrmFormsHelper.php
r3017166 r3017821 952 952 } elseif ( is_array( $form ) && ! empty( $form['parent_form_id'] ) ) { 953 953 $form = $form['parent_form_id']; 954 } elseif ( is_array( $form ) && ! empty( $form['custom_style'] ) ) {954 } elseif ( is_array( $form ) && isset( $form['custom_style'] ) ) { 955 955 $style = $form['custom_style']; 956 956 } -
formidable/tags/6.7.2/classes/views/frm-settings/permissions.php
r2667231 r3017821 5 5 ?> 6 6 <p class="howto"> 7 <?php esc_html_e( 'Select users that are allowed access to Formidable. Without access to View Forms , users will be unable to see the Formidable menu.', 'formidable' ); ?>7 <?php esc_html_e( 'Select users that are allowed access to Formidable. Without access to View Forms List, users will be unable to see the Formidable menu.', 'formidable' ); ?> 8 8 </p> 9 9 -
formidable/tags/6.7.2/formidable.php
r3017166 r3017821 3 3 * Plugin Name: Formidable Forms 4 4 * Description: Quickly and easily create drag-and-drop forms 5 * Version: 6.7. 15 * Version: 6.7.2 6 6 * Plugin URI: https://formidableforms.com/ 7 7 * Author URI: https://formidableforms.com/ -
formidable/tags/6.7.2/languages/formidable.pot
r3017166 r3017821 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Formidable Forms 6.7. 1\n"5 "Project-Id-Version: Formidable Forms 6.7.2\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024-01-0 3T19:57:32+00:00\n"12 "POT-Creation-Date: 2024-01-05T12:53:33+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.9.0\n" … … 6309 6309 6310 6310 #: classes/views/frm-settings/permissions.php:7 6311 msgid "Select users that are allowed access to Formidable. Without access to View Forms , users will be unable to see the Formidable menu."6311 msgid "Select users that are allowed access to Formidable. Without access to View Forms List, users will be unable to see the Formidable menu." 6312 6312 msgstr "" 6313 6313 -
formidable/tags/6.7.2/readme.txt
r3017166 r3017821 6 6 Tested up to: 6.4.2 7 7 Requires PHP: 5.6 8 Stable tag: 6.7. 18 Stable tag: 6.7.2 9 9 10 10 The most advanced WordPress forms plugin. Go beyond contact forms with our drag and drop form builder for surveys, quizzes, and more. … … 443 443 444 444 == Changelog == 445 = 6.7.2 = 446 * Fix: The setting to disable Formidable styling on a form was not working and the Formidable styling would still getting applied. 447 445 448 = 6.7.1 = 446 449 * Security: Form input from unprivileged users will now be sanitized more with strict rules and filtered more on display, allowing only a few basic HTML tags (p, i, b, strong and br) with no support for attributes. The allowed tags can be modified using a new frm_allowed_form_input_html filter. -
formidable/trunk/classes/helpers/FrmAppHelper.php
r3017166 r3017821 34 34 * @var string 35 35 */ 36 public static $plug_version = '6.7. 1';36 public static $plug_version = '6.7.2'; 37 37 38 38 /** -
formidable/trunk/classes/helpers/FrmFormsHelper.php
r3017166 r3017821 952 952 } elseif ( is_array( $form ) && ! empty( $form['parent_form_id'] ) ) { 953 953 $form = $form['parent_form_id']; 954 } elseif ( is_array( $form ) && ! empty( $form['custom_style'] ) ) {954 } elseif ( is_array( $form ) && isset( $form['custom_style'] ) ) { 955 955 $style = $form['custom_style']; 956 956 } -
formidable/trunk/classes/views/frm-settings/permissions.php
r2667231 r3017821 5 5 ?> 6 6 <p class="howto"> 7 <?php esc_html_e( 'Select users that are allowed access to Formidable. Without access to View Forms , users will be unable to see the Formidable menu.', 'formidable' ); ?>7 <?php esc_html_e( 'Select users that are allowed access to Formidable. Without access to View Forms List, users will be unable to see the Formidable menu.', 'formidable' ); ?> 8 8 </p> 9 9 -
formidable/trunk/formidable.php
r3017166 r3017821 3 3 * Plugin Name: Formidable Forms 4 4 * Description: Quickly and easily create drag-and-drop forms 5 * Version: 6.7. 15 * Version: 6.7.2 6 6 * Plugin URI: https://formidableforms.com/ 7 7 * Author URI: https://formidableforms.com/ -
formidable/trunk/languages/formidable.pot
r3017166 r3017821 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Formidable Forms 6.7. 1\n"5 "Project-Id-Version: Formidable Forms 6.7.2\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/formidable\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024-01-0 3T19:57:32+00:00\n"12 "POT-Creation-Date: 2024-01-05T12:53:33+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.9.0\n" … … 6309 6309 6310 6310 #: classes/views/frm-settings/permissions.php:7 6311 msgid "Select users that are allowed access to Formidable. Without access to View Forms , users will be unable to see the Formidable menu."6311 msgid "Select users that are allowed access to Formidable. Without access to View Forms List, users will be unable to see the Formidable menu." 6312 6312 msgstr "" 6313 6313 -
formidable/trunk/readme.txt
r3017166 r3017821 6 6 Tested up to: 6.4.2 7 7 Requires PHP: 5.6 8 Stable tag: 6.7. 18 Stable tag: 6.7.2 9 9 10 10 The most advanced WordPress forms plugin. Go beyond contact forms with our drag and drop form builder for surveys, quizzes, and more. … … 443 443 444 444 == Changelog == 445 = 6.7.2 = 446 * Fix: The setting to disable Formidable styling on a form was not working and the Formidable styling would still getting applied. 447 445 448 = 6.7.1 = 446 449 * Security: Form input from unprivileged users will now be sanitized more with strict rules and filtered more on display, allowing only a few basic HTML tags (p, i, b, strong and br) with no support for attributes. The allowed tags can be modified using a new frm_allowed_form_input_html filter.
Note: See TracChangeset
for help on using the changeset viewer.