Changeset 1684604
- Timestamp:
- 06/24/2017 04:30:21 AM (9 years ago)
- Location:
- wp-universal-newsletter/trunk
- Files:
-
- 2 edited
-
README.txt (modified) (1 diff)
-
wp-universal-newsletter.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-universal-newsletter/trunk/README.txt
r1436113 r1684604 106 106 == Upgrade Notice == 107 107 Added support for `<p>` tag inline styles. 108 109 = 1.1.1 = 110 111 * Fix mismatching nonce name-spaces when saving post meta fields, causing meta fields saving failures. -
wp-universal-newsletter/trunk/wp-universal-newsletter.php
r1436114 r1684604 16 16 * Plugin URI: https://primitivespark.com/ideas/article/wp-universal-newsletter/ 17 17 * Description: This plugin allows you to create a responsive HTML Email template via a Custom Post Type that can be scraped by iContact or GoDaddy for use in email campaigns. 18 * Version: 1.1. 018 * Version: 1.1.1 19 19 * Author: Primitive Spark 20 20 * Author URI: http://primitivespark.com/ … … 283 283 284 284 // Check if our nonce is set. 285 if ( ! isset( $_POST['wpun_ inner_custom_box_nonce'] ) )285 if ( ! isset( $_POST['wpun_newsletter_inner_custom_box_nonce'] ) ) 286 286 return $post_id; 287 287 288 $nonce = $_POST['wpun_ inner_custom_box_nonce'];288 $nonce = $_POST['wpun_newsletter_inner_custom_box_nonce']; 289 289 290 290 // Verify that the nonce is valid. 291 if ( ! wp_verify_nonce( $nonce, 'wpun_ inner_custom_box' ) )291 if ( ! wp_verify_nonce( $nonce, 'wpun_newsletter_inner_custom_box' ) ) 292 292 return $post_id; 293 293
Note: See TracChangeset
for help on using the changeset viewer.