Plugin Directory

Changeset 1682535


Ignore:
Timestamp:
06/21/2017 11:04:14 AM (9 years ago)
Author:
pushwoosh
Message:

2.3.21 Fix push information for sheduled posts

Location:
push-notifications
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • push-notifications/tags/2.3.21/pushwoosh.php

    r1604197 r1682535  
    33    /**
    44     * @package Pushwoosh
    5      * @version 2.3.20
     5     * @version 2.3.21
    66     */
    77
     
    1212    * Author: Pushwoosh, Inc
    1313    * Author URI: https://www.pushwoosh.com/
    14     * Version: 2.3.20
     14    * Version: 2.3.21
    1515    *
    1616    * Copyright 2014 Arello Mobile (email: support@arello-mobile.com)
     
    7676            add_action('draft_'. $post_type, 'pushwoosh_save_post');
    7777            add_action('pending_'. $post_type, 'pushwoosh_save_post');
     78            add_action('save_'. $post_type, 'pushwoosh_save_post');
    7879        }
    7980    }
     
    9091    add_action('draft_post', 'pushwoosh_save_post');
    9192    add_action('pending_post', 'pushwoosh_save_post');
     93    add_action('save_post', 'pushwoosh_save_post');
    9294
    9395    function pushwoosh_message_box($post) {
  • push-notifications/tags/2.3.21/readme.txt

    r1611656 r1682535  
    3131
    3232== Changelog ==
     33
     34= 2.3.21 =
     35* Fix bug: do not save push information for scheduled posts after WP update
    3336
    3437= 2.3.20 =
  • push-notifications/trunk/pushwoosh.php

    r1604197 r1682535  
    33    /**
    44     * @package Pushwoosh
    5      * @version 2.3.20
     5     * @version 2.3.21
    66     */
    77
     
    1212    * Author: Pushwoosh, Inc
    1313    * Author URI: https://www.pushwoosh.com/
    14     * Version: 2.3.20
     14    * Version: 2.3.21
    1515    *
    1616    * Copyright 2014 Arello Mobile (email: support@arello-mobile.com)
     
    7676            add_action('draft_'. $post_type, 'pushwoosh_save_post');
    7777            add_action('pending_'. $post_type, 'pushwoosh_save_post');
     78            add_action('save_'. $post_type, 'pushwoosh_save_post');
    7879        }
    7980    }
     
    9091    add_action('draft_post', 'pushwoosh_save_post');
    9192    add_action('pending_post', 'pushwoosh_save_post');
     93    add_action('save_post', 'pushwoosh_save_post');
    9294
    9395    function pushwoosh_message_box($post) {
  • push-notifications/trunk/readme.txt

    r1611656 r1682535  
    3131
    3232== Changelog ==
     33
     34= 2.3.21 =
     35* Fix bug: do not save push information for scheduled posts after WP update
    3336
    3437= 2.3.20 =
Note: See TracChangeset for help on using the changeset viewer.