Changeset 1682535
- Timestamp:
- 06/21/2017 11:04:14 AM (9 years ago)
- Location:
- push-notifications
- Files:
-
- 4 edited
- 1 copied
-
tags/2.3.21 (copied) (copied from push-notifications/trunk)
-
tags/2.3.21/pushwoosh.php (modified) (4 diffs)
-
tags/2.3.21/readme.txt (modified) (1 diff)
-
trunk/pushwoosh.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
push-notifications/tags/2.3.21/pushwoosh.php
r1604197 r1682535 3 3 /** 4 4 * @package Pushwoosh 5 * @version 2.3.2 05 * @version 2.3.21 6 6 */ 7 7 … … 12 12 * Author: Pushwoosh, Inc 13 13 * Author URI: https://www.pushwoosh.com/ 14 * Version: 2.3.2 014 * Version: 2.3.21 15 15 * 16 16 * Copyright 2014 Arello Mobile (email: support@arello-mobile.com) … … 76 76 add_action('draft_'. $post_type, 'pushwoosh_save_post'); 77 77 add_action('pending_'. $post_type, 'pushwoosh_save_post'); 78 add_action('save_'. $post_type, 'pushwoosh_save_post'); 78 79 } 79 80 } … … 90 91 add_action('draft_post', 'pushwoosh_save_post'); 91 92 add_action('pending_post', 'pushwoosh_save_post'); 93 add_action('save_post', 'pushwoosh_save_post'); 92 94 93 95 function pushwoosh_message_box($post) { -
push-notifications/tags/2.3.21/readme.txt
r1611656 r1682535 31 31 32 32 == Changelog == 33 34 = 2.3.21 = 35 * Fix bug: do not save push information for scheduled posts after WP update 33 36 34 37 = 2.3.20 = -
push-notifications/trunk/pushwoosh.php
r1604197 r1682535 3 3 /** 4 4 * @package Pushwoosh 5 * @version 2.3.2 05 * @version 2.3.21 6 6 */ 7 7 … … 12 12 * Author: Pushwoosh, Inc 13 13 * Author URI: https://www.pushwoosh.com/ 14 * Version: 2.3.2 014 * Version: 2.3.21 15 15 * 16 16 * Copyright 2014 Arello Mobile (email: support@arello-mobile.com) … … 76 76 add_action('draft_'. $post_type, 'pushwoosh_save_post'); 77 77 add_action('pending_'. $post_type, 'pushwoosh_save_post'); 78 add_action('save_'. $post_type, 'pushwoosh_save_post'); 78 79 } 79 80 } … … 90 91 add_action('draft_post', 'pushwoosh_save_post'); 91 92 add_action('pending_post', 'pushwoosh_save_post'); 93 add_action('save_post', 'pushwoosh_save_post'); 92 94 93 95 function pushwoosh_message_box($post) { -
push-notifications/trunk/readme.txt
r1611656 r1682535 31 31 32 32 == Changelog == 33 34 = 2.3.21 = 35 * Fix bug: do not save push information for scheduled posts after WP update 33 36 34 37 = 2.3.20 =
Note: See TracChangeset
for help on using the changeset viewer.