Plugin Directory

Changeset 994050


Ignore:
Timestamp:
09/20/2014 11:21:21 PM (12 years ago)
Author:
mailermailer
Message:

MM-10426 - update MailerMailer WP module "tested to" up to 4.0, resolve double printing bug

Location:
mailermailer/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • mailermailer/trunk/class-mailermailer.php

    r770429 r994050  
    2626
    2727  // Plugin version, used for cache-busting of style and script file references.
    28   protected $version = '1.0.1';
     28  protected $version = '1.0.3';
    2929
    3030  // Unique identifier for your plugin.
     
    6868
    6969    add_action('init', array($this, 'request_hanlder'));
     70
     71    $this->set_default_values();
    7072  }
    7173
     
    123125        add_settings_error('mailermailer_api', 'invalid-api-key-s', 'API key verified.', 'updated');
    124126        $this->get_formfields($input['mm_apikey'], 'register');
    125         $this->set_default_values();
    126127      }
    127128    }
     
    286287  {
    287288    $opts = (array) get_option('mailermailer');
     289    $opts_api = (array) get_option('mailermailer_api');
    288290
    289291    // store default values if they don't exist
     
    311313      $opts['mm_text_color'] = '000000';
    312314    }
     315   
     316    if (!$opts_api['mm_apikey']) {
     317      $opts_api['mm_apikey'] = '';
     318    }
    313319
    314320    update_option('mailermailer', $opts);
     321    update_option('mailermailer_api', $opts_api);
     322    update_option('mailermailer_refresh', array('refresh' => true));
    315323  }
    316324
  • mailermailer/trunk/includes/mailermailer-api-php/LICENSE.php

    r760804 r994050  
    66 * @package   mailermailer-api-php
    77 * @author    MailerMailer <support@mailermailer.com>
    8  * @copyright 2001-2013 MailerMailer LLC
     8 * @copyright 2001-2014 MailerMailer LLC
    99 * @license   This program is free software; you can redistribute it and/or modify
    1010 *            it under the terms of the GNU General Public License as published by
  • mailermailer/trunk/includes/mailermailer-api-php/config.php

    r770429 r994050  
    66define('MAILAPI_ENDPOINT', 'https://api.mailermailer.com/1.0/');
    77
    8 define('MAILAPI_VERSION', '1.0.4');
     8define('MAILAPI_VERSION', '1.0.5');
    99
    1010define ('MAILAPI_PARTNER', 'MM');
  • mailermailer/trunk/mailermailer.php

    r776169 r994050  
    44Plugin URI: http://wordpress.org/extend/plugins/mailermailer/
    55Description: The mailermailer plugin allows you to add your own signup form to your site.
    6 Version: 1.0.2
     6Version: 1.0.3
    77Author: mailermailer
    88Author URI: http://www.mailermailer.com/api/
    99*/
    10 /*  Copyright 2013  MailerMailer  (email : support@mailermailer.com)
     10/*  Copyright 2014  MailerMailer  (email : support@mailermailer.com)
    1111
    1212    This program is free software; you can redistribute it and/or modify
  • mailermailer/trunk/readme.txt

    r823501 r994050  
    33Tags: mailermailer, email, newsletter, signup, marketing, plugin, widget, forms, email marketing
    44Requires at least: 3.5
    5 Tested up to: 3.8
    6 Stable tag: 1.0.2
     5Tested up to: 4.0
     6Stable tag: 1.0.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7070== Upgrade Notice ==
    7171
     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
    7277= 1.0.2 =
    7378* Fix bug where hidden fields were being displayed on the signup form
     
    7782
    7883== 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
    7989
    8090= 1.0.2 =
Note: See TracChangeset for help on using the changeset viewer.