Changeset 994050
- Timestamp:
- 09/20/2014 11:21:21 PM (12 years ago)
- Location:
- mailermailer/trunk
- Files:
-
- 5 edited
-
class-mailermailer.php (modified) (5 diffs)
-
includes/mailermailer-api-php/LICENSE.php (modified) (1 diff)
-
includes/mailermailer-api-php/config.php (modified) (1 diff)
-
mailermailer.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mailermailer/trunk/class-mailermailer.php
r770429 r994050 26 26 27 27 // Plugin version, used for cache-busting of style and script file references. 28 protected $version = '1.0. 1';28 protected $version = '1.0.3'; 29 29 30 30 // Unique identifier for your plugin. … … 68 68 69 69 add_action('init', array($this, 'request_hanlder')); 70 71 $this->set_default_values(); 70 72 } 71 73 … … 123 125 add_settings_error('mailermailer_api', 'invalid-api-key-s', 'API key verified.', 'updated'); 124 126 $this->get_formfields($input['mm_apikey'], 'register'); 125 $this->set_default_values();126 127 } 127 128 } … … 286 287 { 287 288 $opts = (array) get_option('mailermailer'); 289 $opts_api = (array) get_option('mailermailer_api'); 288 290 289 291 // store default values if they don't exist … … 311 313 $opts['mm_text_color'] = '000000'; 312 314 } 315 316 if (!$opts_api['mm_apikey']) { 317 $opts_api['mm_apikey'] = ''; 318 } 313 319 314 320 update_option('mailermailer', $opts); 321 update_option('mailermailer_api', $opts_api); 322 update_option('mailermailer_refresh', array('refresh' => true)); 315 323 } 316 324 -
mailermailer/trunk/includes/mailermailer-api-php/LICENSE.php
r760804 r994050 6 6 * @package mailermailer-api-php 7 7 * @author MailerMailer <support@mailermailer.com> 8 * @copyright 2001-201 3MailerMailer LLC8 * @copyright 2001-2014 MailerMailer LLC 9 9 * @license This program is free software; you can redistribute it and/or modify 10 10 * it under the terms of the GNU General Public License as published by -
mailermailer/trunk/includes/mailermailer-api-php/config.php
r770429 r994050 6 6 define('MAILAPI_ENDPOINT', 'https://api.mailermailer.com/1.0/'); 7 7 8 define('MAILAPI_VERSION', '1.0. 4');8 define('MAILAPI_VERSION', '1.0.5'); 9 9 10 10 define ('MAILAPI_PARTNER', 'MM'); -
mailermailer/trunk/mailermailer.php
r776169 r994050 4 4 Plugin URI: http://wordpress.org/extend/plugins/mailermailer/ 5 5 Description: The mailermailer plugin allows you to add your own signup form to your site. 6 Version: 1.0. 26 Version: 1.0.3 7 7 Author: mailermailer 8 8 Author URI: http://www.mailermailer.com/api/ 9 9 */ 10 /* Copyright 201 3MailerMailer (email : support@mailermailer.com)10 /* Copyright 2014 MailerMailer (email : support@mailermailer.com) 11 11 12 12 This program is free software; you can redistribute it and/or modify -
mailermailer/trunk/readme.txt
r823501 r994050 3 3 Tags: mailermailer, email, newsletter, signup, marketing, plugin, widget, forms, email marketing 4 4 Requires at least: 3.5 5 Tested up to: 3.86 Stable tag: 1.0. 25 Tested up to: 4.0 6 Stable tag: 1.0.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 70 70 == Upgrade Notice == 71 71 72 = 1.0.3 = 73 * Update tested version to 4.0 74 * Update mailermailer-api-php wrapper to version 1.0.5 75 * Fix bug where the same notification would display multiple times 76 72 77 = 1.0.2 = 73 78 * Fix bug where hidden fields were being displayed on the signup form … … 77 82 78 83 == Changelog == 84 85 = 1.0.3 = 86 * Update tested version to 4.0 87 * Update mailermailer-api-php wrapper to version 1.0.5 88 * Fix bug where the same notification would display multiple times 79 89 80 90 = 1.0.2 =
Note: See TracChangeset
for help on using the changeset viewer.