Changeset 3470417
- Timestamp:
- 02/26/2026 03:13:48 PM (4 weeks ago)
- Location:
- ultimate-addons-for-contact-form-7/trunk
- Files:
-
- 3 edited
-
admin/tf-options/TF_Options.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
ultimate-addons-for-contact-form-7.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ultimate-addons-for-contact-form-7/trunk/admin/tf-options/TF_Options.php
r3290972 r3470417 65 65 } 66 66 67 // Checked Currenct can save option 68 $current_user = wp_get_current_user(); 69 $current_user_role = $current_user->roles[0]; 70 71 if ( $current_user_role !== 'administrator' && ! is_admin() ) { 72 wp_die( 'You do not have sufficient permissions to access this page.' ); 67 if ( ! current_user_can( 'manage_options' ) ) { 68 wp_send_json_error( 69 [ 'message' => __( 'You do not have sufficient permissions to access this page.', 'ultimate-addons-cf7' ) ] 70 ); 73 71 } 74 72 -
ultimate-addons-for-contact-form-7/trunk/readme.txt
r3453159 r3470417 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 3.5.3 67 Stable tag: 3.5.37 8 8 License: GPL-2.0+ 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.txt … … 482 482 == Changelog == 483 483 484 = 3.5.37 - 26/02/2026 = 485 486 - Improved: Security has been improved. 487 484 488 = 3.5.36 - 04/02/2026 = 485 489 -
ultimate-addons-for-contact-form-7/trunk/ultimate-addons-for-contact-form-7.php
r3453159 r3470417 4 4 * Plugin URI: https://cf7addons.com/ 5 5 * Description: 50+ Essential Addons for Contact Form 7 - Conditional Fields, Multi Step Forms, Redirection, Form Templates, Columns, WooCommerce, Mailchimp and more, all in one. 6 * Version: 3.5.3 66 * Version: 3.5.37 7 7 * Author: Themefic 8 8 * Author URI: https://themefic.com/ … … 31 31 define( 'UACF7_PATH', plugin_dir_path( __FILE__ ) ); 32 32 33 define( 'UACF7_VERSION', '3.5.3 6' );33 define( 'UACF7_VERSION', '3.5.37' ); 34 34 35 35 if ( ! class_exists( 'Appsero\Client' ) ) {
Note: See TracChangeset
for help on using the changeset viewer.