Plugin Directory

Changeset 948091


Ignore:
Timestamp:
07/14/2014 01:39:56 PM (12 years ago)
Author:
marisp
Message:
  • Fixed bug which caused plugin sender to stop working without Pro plugin.
Location:
wpnewsman-newsletters/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wpnewsman-newsletters/trunk/core.php

    r946974 r948091  
    147147        add_action('plugins_loaded', array($this, 'setLocale'));
    148148
    149         add_action('newsman_pro_workers_ready', array($this, 'onProWorkersReady'));
     149        if ( defined('NEWSMANP') ) {
     150            add_action('newsman_pro_workers_ready', array($this, 'onProWorkersReady'));
     151        } else {
     152            add_action('init', array($this, 'onProWorkersReady')); 
     153        }       
    150154
    151155        // -----
  • wpnewsman-newsletters/trunk/readme.txt

    r946974 r948091  
    55Requires at least: 3.5
    66Tested up to: 4.0
    7 Stable tag: 1.7.5
     7Stable tag: 1.7.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    125125== Changelog ==
    126126
     127= 1.7.6 =
     128
     129* Fixed bug which caused plugin sender to stop working without Pro plugin.
     130
    127131= 1.7.5 =
    128132
     
    403407== Upgrade Notice ==
    404408
     409= 1.7.6 =
     410Highly recommended update. Fixed critical bug.
     411
    405412= 1.7.3 =
    406413Recommended upgrade. Lots of small bug fixes and improvements.
  • wpnewsman-newsletters/trunk/wpnewsman.php

    r946974 r948091  
    44Plugin URI: http://wpnewsman.com
    55Description: You get simple yet powerful newsletter solution for WordPress. Now you can easily add double optin subscription forms in widgets, articles and pages, import and manage your lists, create and send beautiful newsletters directly from your WordPress site. You get complete freedom and a lower cost compared to Email Service Providers. Free yourself from paying for expensive email campaigns. WPNewsman plugin updated regularly with new features.
    6 Version: 1.7.5
     6Version: 1.7.6
    77Author: Alex Ladyga - G-Lock Software
    88Author URI: http://www.glocksoft.com
     
    3232
    3333define('NEWSMAN', 'wpnewsman');
    34 define('NEWSMAN_VERSION', '1.7.5');
     34define('NEWSMAN_VERSION', '1.7.6');
    3535
    3636if ( preg_match('/.*?\.dev$/i', $_SERVER['HTTP_HOST']) ) {
Note: See TracChangeset for help on using the changeset viewer.