Plugin Directory

Changeset 2604160


Ignore:
Timestamp:
09/24/2021 08:48:50 AM (5 years ago)
Author:
notix
Message:

Notix web push notifications - release 1.1.3

Location:
notix-web-push-notifications
Files:
40 added
4 edited

Legend:

Unmodified
Added
Removed
  • notix-web-push-notifications/trunk/README.txt

    r2603559 r2604160  
    55Requires at least: 4.9.4
    66Tested up to: 5.8.1
    7 Stable tag: 1.1.2
     7Stable tag: 1.1.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8080== Changelog ==
    8181
     82= 1.1.3 =
     83- Fix duplicate push notifications on create post
     84
    8285= 1.1.2 =
    8386- Fix duplicate push notifications on preview posts
  • notix-web-push-notifications/trunk/admin/class-notix-admin.php

    r2603559 r2604160  
    163163        }
    164164
    165         if ($post->post_status !== 'publish' && !in_array($post->post_type, $post_types)) {
     165        if (!isset($_POST['post_status']) || $_POST['post_status'] !== 'publish' && !in_array($post->post_type, $post_types)) {
    166166            return $post_id;
    167167        }
  • notix-web-push-notifications/trunk/includes/class-notix.php

    r2603559 r2604160  
    1818            $this->version = NOTIX_VERSION;
    1919        } else {
    20             $this->version = '1.1.2';
     20            $this->version = '1.1.3';
    2121        }
    2222        $this->notix = 'notix';
  • notix-web-push-notifications/trunk/notix.php

    r2603559 r2604160  
    44 *
    55 * @link              https://notix.co/
    6  * @since             1.1.2
     6 * @since             1.1.3
    77 * @package           Notix
    88 *
     
    1010 * Plugin Name:       Notix Push Notifications
    1111 * Description:       Bring more repeat traffic to your WordPress site with Notix. Best engine for web push subscribers collection and notifications delivery.
    12  * Version:           1.1.2
     12 * Version:           1.1.3
    1313 * Author:            Notix
    1414 * Author URI:        https://notix.co/
Note: See TracChangeset for help on using the changeset viewer.