Changeset 2918834
- Timestamp:
- 05/30/2023 07:10:51 AM (3 years ago)
- Location:
- wonderpush-web-push-notifications
- Files:
-
- 4 added
- 8 edited
- 1 copied
-
tags/1.9.23 (copied) (copied from wonderpush-web-push-notifications/trunk)
-
tags/1.9.23/assets/js/select2.min.js (added)
-
tags/1.9.23/assets/select2.min.css (added)
-
tags/1.9.23/lib/Util/UrlUtil.php (modified) (1 diff)
-
tags/1.9.23/readme.txt (modified) (2 diffs)
-
tags/1.9.23/wonderpush-admin.php (modified) (2 diffs)
-
tags/1.9.23/wonderpush.php (modified) (1 diff)
-
trunk/assets/js/select2.min.js (added)
-
trunk/assets/select2.min.css (added)
-
trunk/lib/Util/UrlUtil.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wonderpush-admin.php (modified) (2 diffs)
-
trunk/wonderpush.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wonderpush-web-push-notifications/tags/1.9.23/lib/Util/UrlUtil.php
r2481484 r2918834 57 57 if (defined('PHP_QUERY_RFC3986')) { 58 58 // @codingStandardsIgnoreLine 59 $qs = http_build_query($qs, null, '&', PHP_QUERY_RFC3986);59 $qs = http_build_query($qs, '', '&', PHP_QUERY_RFC3986); 60 60 } else { 61 61 $qs = http_build_query($qs); -
wonderpush-web-push-notifications/tags/1.9.23/readme.txt
r2895540 r2918834 4 4 Tags: push, notification, web, woocommerce, cart, AMP, android, GDPR, abandoned, reminder, basket 5 5 Requires at least: 5.0 6 Tested up to: 6.2 7 Stable tag: 1.9.2 26 Tested up to: 6.2.2 7 Stable tag: 1.9.23 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 90 90 91 91 == Changelog == 92 = 1.9.23 = 93 - Removed PHP 8 warning 94 - Fix bug where target segments were not applied 95 92 96 = 1.9.22 = 93 97 - Removed PHP 8 warning -
wonderpush-web-push-notifications/tags/1.9.23/wonderpush-admin.php
r2895540 r2918834 3 3 4 4 class WonderPushAdmin { 5 const RESOURCES_VERSION = '1.9.2 2';5 const RESOURCES_VERSION = '1.9.23'; 6 6 const MENU_SLUG = 'wonderpush'; 7 7 const META_BOX_ID = 'wonderpush_meta_box'; … … 255 255 if (!$access_token || $settings->getDisableSendOnPublish()) return; 256 256 257 // quirk of Gutenberg editor leads to two passes if meta box is added 258 // conditional removes first pass 259 if( defined( 'REST_REQUEST' ) && REST_REQUEST ) { 260 return; 261 } 262 257 263 // Returns true if there is POST data 258 264 $was_posted = !empty($_POST); -
wonderpush-web-push-notifications/tags/1.9.23/wonderpush.php
r2895540 r2918834 8 8 Author: WonderPush 9 9 Author URI: https://www.wonderpush.com/ 10 Version: 1.9.2 210 Version: 1.9.23 11 11 License: GPLv2 or later 12 12 */ -
wonderpush-web-push-notifications/trunk/lib/Util/UrlUtil.php
r2481484 r2918834 57 57 if (defined('PHP_QUERY_RFC3986')) { 58 58 // @codingStandardsIgnoreLine 59 $qs = http_build_query($qs, null, '&', PHP_QUERY_RFC3986);59 $qs = http_build_query($qs, '', '&', PHP_QUERY_RFC3986); 60 60 } else { 61 61 $qs = http_build_query($qs); -
wonderpush-web-push-notifications/trunk/readme.txt
r2895540 r2918834 4 4 Tags: push, notification, web, woocommerce, cart, AMP, android, GDPR, abandoned, reminder, basket 5 5 Requires at least: 5.0 6 Tested up to: 6.2 7 Stable tag: 1.9.2 26 Tested up to: 6.2.2 7 Stable tag: 1.9.23 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 90 90 91 91 == Changelog == 92 = 1.9.23 = 93 - Removed PHP 8 warning 94 - Fix bug where target segments were not applied 95 92 96 = 1.9.22 = 93 97 - Removed PHP 8 warning -
wonderpush-web-push-notifications/trunk/wonderpush-admin.php
r2895540 r2918834 3 3 4 4 class WonderPushAdmin { 5 const RESOURCES_VERSION = '1.9.2 2';5 const RESOURCES_VERSION = '1.9.23'; 6 6 const MENU_SLUG = 'wonderpush'; 7 7 const META_BOX_ID = 'wonderpush_meta_box'; … … 255 255 if (!$access_token || $settings->getDisableSendOnPublish()) return; 256 256 257 // quirk of Gutenberg editor leads to two passes if meta box is added 258 // conditional removes first pass 259 if( defined( 'REST_REQUEST' ) && REST_REQUEST ) { 260 return; 261 } 262 257 263 // Returns true if there is POST data 258 264 $was_posted = !empty($_POST); -
wonderpush-web-push-notifications/trunk/wonderpush.php
r2895540 r2918834 8 8 Author: WonderPush 9 9 Author URI: https://www.wonderpush.com/ 10 Version: 1.9.2 210 Version: 1.9.23 11 11 License: GPLv2 or later 12 12 */
Note: See TracChangeset
for help on using the changeset viewer.