Changeset 1655141
- Timestamp:
- 05/11/2017 01:30:06 PM (9 years ago)
- Location:
- push7/trunk
- Files:
-
- 3 edited
-
classes/push7-post.php (modified) (2 diffs)
-
classes/push7.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
push7/trunk/classes/push7-post.php
r1654402 r1655141 33 33 delete_option($future_opt_name); 34 34 } 35 } elseif ($this::push_default_config( $postData) === 'false') {35 } elseif ($this::push_default_config() === 'false') { 36 36 return; 37 37 } … … 136 136 } 137 137 138 public function push_default_config($post = null) { 139 $post = get_post($post); 138 public function push_default_config($post) { 140 139 $opt = "push7_push_pt_".get_post_type($post); 141 140 if ($post->post_status === 'publish') { -
push7/trunk/classes/push7.php
r1648728 r1655141 3 3 class Push7 { 4 4 const API_URL = 'https://api.push7.jp/api/v1/'; 5 const VERSION = '2. 1.0';5 const VERSION = '2.2.3'; 6 6 7 7 public function __construct() { -
push7/trunk/readme.txt
r1654402 r1655141 25 25 26 26 == Changelog == 27 = 2.2.2 = 27 = 2.2.3 = 28 * 正常にプッシュ通知が送信されない問題を修正 29 30 = 2.2.2 = 28 31 * 500エラーを修正 29 32
Note: See TracChangeset
for help on using the changeset viewer.