Changeset 2836555
- Timestamp:
- 12/20/2022 10:45:53 AM (3 years ago)
- Location:
- mailbluster4wp/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
admin/class-mailbluster4wp-form-option.php (modified) (2 diffs)
-
mailbluster4wp.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mailbluster4wp/trunk/README.txt
r2835808 r2836555 6 6 Tested up to: 6.1.1 7 7 Requires PHP: 5.6 8 Stable tag: 1.2.0 8 Stable tag: 1.2.0.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 74 74 == Changelog == 75 75 76 = 1.2.0.1 = 77 * fix: Message option save on database. 78 76 79 = 1.2.0 = 77 80 * WP version 6.1.1 compatible. -
mailbluster4wp/trunk/admin/class-mailbluster4wp-form-option.php
r2835808 r2836555 124 124 if ($this->value_exists('mb4wp_form_builder_default_label')) { 125 125 $builder_default = $_POST['mb4wp_form_builder_default_label']; 126 // var_dump($builder_default);127 // die;128 126 update_post_meta( 129 127 $post_id, … … 133 131 } else { 134 132 $this->delete_post_meta($post_id, 'mb4wp_form_builder_default_label'); 133 } 134 135 if ($this->value_exists('mb4wp_form_message_options')) { 136 update_post_meta( 137 $post_id, 138 'mb4wp_form_message_options', 139 MailBluster4WP_Helper::sanitize_field_array($_POST['mb4wp_form_message_options']) 140 ); 141 } else { 142 $this->delete_post_meta($post_id, 'mb4wp_form_message_options'); 135 143 } 136 144 -
mailbluster4wp/trunk/mailbluster4wp.php
r2835808 r2836555 17 17 * Plugin URI: https://mailbluster.com 18 18 * Description: A free and simple WordPress plugin for MailBluster which provides different methods to create and include subscription forms into WordPress pages or posts by utilizing AmazonSES service. 19 * Version: 1.2.0 19 * Version: 1.2.0.1 20 20 * Tested up to: 6.1.1 21 21 * Author: MailBluster … … 37 37 * Rename this for your plugin and update it as you release new versions. 38 38 */ 39 define('MAILBLUSTER4WP_VERSION', '1.2.0 ');39 define('MAILBLUSTER4WP_VERSION', '1.2.0.1'); 40 40 41 41 /**
Note: See TracChangeset
for help on using the changeset viewer.