Changeset 333265
- Timestamp:
- 01/16/2011 05:38:26 PM (15 years ago)
- Location:
- mailchimp-widget/trunk
- Files:
-
- 3 edited
-
lib/ns_widget_mailchimp.class.php (modified) (2 diffs)
-
mailchimp-widget.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mailchimp-widget/trunk/lib/ns_widget_mailchimp.class.php
r333130 r333265 12 12 private $default_success_message = 'Thank you for joining our mailing list. Please check your email for a confirmation link.'; 13 13 private $default_title = 'Sign up for our mailing list.'; 14 <<<<<<< HEAD15 =======16 14 private $successful_signup = false; 17 15 private $subscribe_errors; 18 >>>>>>> 98d063702c946fc36209b5c6093f63d5a61b211119 16 20 17 private $ns_mc_plugin; … … 264 261 extract($args); 265 262 266 <<<<<<< HEAD267 if ($this->hash_mailing_list_id($this->number) == $_COOKIE[$this->id_base . '-' . $this->number] || false == $this->ns_mc_plugin->get_mcapi()) {268 =======269 263 if ((isset($_COOKIE[$this->id_base . '-' . $this->number]) && $this->hash_mailing_list_id($this->number) == $_COOKIE[$this->id_base . '-' . $this->number]) || false == $this->ns_mc_plugin->get_mcapi()) { 270 >>>>>>> 98d063702c946fc36209b5c6093f63d5a61b2111271 264 272 265 return 0; -
mailchimp-widget/trunk/mailchimp-widget.php
r333130 r333265 5 5 Description: 6 6 Author: James Lafferty 7 Version: 0.6. 17 Version: 0.6.2 8 8 Author URI: https://github.com/kalchas 9 9 License: GPL2 -
mailchimp-widget/trunk/readme.txt
r333130 r333265 41 41 42 42 == Changelog == 43 = 0.6.2 = 44 * Removed old merge data. Thank you to [huguespisapia](http://wordpress.org/support/profile/huguespisapia) for letting me know about this. 45 43 46 = 0.6.1 = 44 * Cleaned up a few more WP_DEBUG mode errors.47 * Cleaned up a few more WP_DEBUG mode errors. 45 48 46 49 = 0.6 = … … 80 83 81 84 == Upgrade Notice == 85 = 0.6.2 = 86 * Removed old merge data. Thank you to [huguespisapia](http://wordpress.org/support/profile/huguespisapia) for letting me know about this. (critical upgrade) 87 82 88 = 0.6.1 = 83 89 * Corrects some additional minor errors that come up in WP_DEBUG mode.
Note: See TracChangeset
for help on using the changeset viewer.