Plugin Directory

Changeset 2918834


Ignore:
Timestamp:
05/30/2023 07:10:51 AM (3 years ago)
Author:
wonderpush
Message:

v1.9.23

Location:
wonderpush-web-push-notifications
Files:
4 added
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wonderpush-web-push-notifications/tags/1.9.23/lib/Util/UrlUtil.php

    r2481484 r2918834  
    5757      if (defined('PHP_QUERY_RFC3986')) {
    5858        // @codingStandardsIgnoreLine
    59         $qs = http_build_query($qs, null, '&', PHP_QUERY_RFC3986);
     59        $qs = http_build_query($qs, '', '&', PHP_QUERY_RFC3986);
    6060      } else {
    6161        $qs = http_build_query($qs);
  • wonderpush-web-push-notifications/tags/1.9.23/readme.txt

    r2895540 r2918834  
    44Tags: push, notification, web, woocommerce, cart, AMP, android, GDPR, abandoned, reminder, basket
    55Requires at least: 5.0
    6 Tested up to: 6.2
    7 Stable tag: 1.9.22
     6Tested up to: 6.2.2
     7Stable tag: 1.9.23
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9090
    9191== Changelog ==
     92= 1.9.23 =
     93- Removed PHP 8 warning
     94- Fix bug where target segments were not applied
     95
    9296= 1.9.22 =
    9397- Removed PHP 8 warning
  • wonderpush-web-push-notifications/tags/1.9.23/wonderpush-admin.php

    r2895540 r2918834  
    33
    44class WonderPushAdmin {
    5   const RESOURCES_VERSION = '1.9.22';
     5  const RESOURCES_VERSION = '1.9.23';
    66  const MENU_SLUG = 'wonderpush';
    77  const META_BOX_ID = 'wonderpush_meta_box';
     
    255255      if (!$access_token || $settings->getDisableSendOnPublish()) return;
    256256
     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
    257263      // Returns true if there is POST data
    258264      $was_posted = !empty($_POST);
  • wonderpush-web-push-notifications/tags/1.9.23/wonderpush.php

    r2895540 r2918834  
    88Author: WonderPush
    99Author URI: https://www.wonderpush.com/
    10 Version: 1.9.22
     10Version: 1.9.23
    1111License: GPLv2 or later
    1212*/
  • wonderpush-web-push-notifications/trunk/lib/Util/UrlUtil.php

    r2481484 r2918834  
    5757      if (defined('PHP_QUERY_RFC3986')) {
    5858        // @codingStandardsIgnoreLine
    59         $qs = http_build_query($qs, null, '&', PHP_QUERY_RFC3986);
     59        $qs = http_build_query($qs, '', '&', PHP_QUERY_RFC3986);
    6060      } else {
    6161        $qs = http_build_query($qs);
  • wonderpush-web-push-notifications/trunk/readme.txt

    r2895540 r2918834  
    44Tags: push, notification, web, woocommerce, cart, AMP, android, GDPR, abandoned, reminder, basket
    55Requires at least: 5.0
    6 Tested up to: 6.2
    7 Stable tag: 1.9.22
     6Tested up to: 6.2.2
     7Stable tag: 1.9.23
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9090
    9191== Changelog ==
     92= 1.9.23 =
     93- Removed PHP 8 warning
     94- Fix bug where target segments were not applied
     95
    9296= 1.9.22 =
    9397- Removed PHP 8 warning
  • wonderpush-web-push-notifications/trunk/wonderpush-admin.php

    r2895540 r2918834  
    33
    44class WonderPushAdmin {
    5   const RESOURCES_VERSION = '1.9.22';
     5  const RESOURCES_VERSION = '1.9.23';
    66  const MENU_SLUG = 'wonderpush';
    77  const META_BOX_ID = 'wonderpush_meta_box';
     
    255255      if (!$access_token || $settings->getDisableSendOnPublish()) return;
    256256
     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
    257263      // Returns true if there is POST data
    258264      $was_posted = !empty($_POST);
  • wonderpush-web-push-notifications/trunk/wonderpush.php

    r2895540 r2918834  
    88Author: WonderPush
    99Author URI: https://www.wonderpush.com/
    10 Version: 1.9.22
     10Version: 1.9.23
    1111License: GPLv2 or later
    1212*/
Note: See TracChangeset for help on using the changeset viewer.