Plugin Directory

Changeset 1918375


Ignore:
Timestamp:
08/01/2018 04:44:02 PM (8 years ago)
Author:
kstover
Message:

Updating to version 1.0.3. See changelog for details.

Location:
ninja-mail
Files:
24 added
3 edited

Legend:

Unmodified
Added
Removed
  • ninja-mail/trunk/includes/app/service.php

    r1904723 r1918375  
    2020    add_action( 'wp_ajax_nf_service_ninja-mail', [ $this, 'sync_service' ] );
    2121
    22     if( $this->is_service_enabled() ){
    23       add_filter( 'ninja-forms-dashboard-promotions', [ $this, 'remove_promotion' ] );
    24     }
     22    add_filter( 'ninja-forms-dashboard-promotions', [ $this, 'remove_promotion' ] );
    2523
    2624    return $this;
     
    10098
    10199  public function remove_promotion( $promotions ){
    102     unset( $promotions[ 'ninja-mail' ] );
     100    if( $this->is_service_enabled() ){
     101      unset( $promotions[ 'ninja-mail' ] );
     102    }
    103103    return $promotions;
    104104  }
  • ninja-mail/trunk/ninja-mail.php

    r1904723 r1918375  
    55 * Plugin URI: http://ninjaforms.com/
    66 * Description: A transactional email service for Ninja Forms.
    7  * Version: 1.0.2
     7 * Version: 1.0.3
    88 * Author: Ninja Forms
    99 * Author URI: http://ninjaforms.com
     
    1717  require_once( plugin_dir_path( __FILE__ ) . 'bootstrap.php' );
    1818
    19   \NinjaMail\Plugin::getInstance()->setup( '1.0.2', __FILE__ );
     19  \NinjaMail\Plugin::getInstance()->setup( '1.0.3', __FILE__ );
    2020
    2121  register_activation_hook( __FILE__, function() {
  • ninja-mail/trunk/readme.txt

    r1904723 r1918375  
    55Requires at least: 4.7
    66Tested up to: 4.9
    7 Stable Tag: 1.0.2
     7Stable Tag: 1.0.3
    88License: GPLv2 or later
    99
     
    3535== Upgrade Notice ==
    3636
    37 * Reverted fallback to avoid possible duplicate emails.
    38 * Fixed a PHP Warning when custom email headers are not set.
     37* Reduced the number of external requests to the server.
    3938
    4039== Changelog ==
     40
     41= 1.0.3 (01 August 2018) =
     42
     43* Reduced the number of external requests to the server.
    4144
    4245= 1.0.2 (05 July 2018) =
Note: See TracChangeset for help on using the changeset viewer.