Plugin Directory

Changeset 3359910


Ignore:
Timestamp:
09/11/2025 01:28:41 PM (6 months ago)
Author:
microsoftstart
Message:

tagging version: 2.8.7

Location:
microsoft-start
Files:
77 added
5 edited

Legend:

Unmodified
Added
Removed
  • microsoft-start/trunk/assets/js/dashboard.asset.php

    r3347304 r3359910  
    1 <?php return array('dependencies' => array('react', 'react-dom', 'wp-components', 'wp-i18n'), 'version' => 'f3845a56b3dfb44856e3');
     1<?php return array('dependencies' => array('react', 'react-dom', 'wp-components', 'wp-i18n'), 'version' => 'ecde4d08e3c4165bf03d');
  • microsoft-start/trunk/index.php

    r3347448 r3359910  
    66 * Plugin URI:        https://www.msn.com/
    77 * Description:       MSN Partner Hub WordPress plugin to help WordPress content creators to share content to MSN News feed.
    8  * Version:           2.8.5
     8 * Version:           2.8.7
    99 * Requires at least: 5.4
    1010 * Requires PHP:      7.3
  • microsoft-start/trunk/readme.txt

    r3347448 r3359910  
    33Requires at least: 5.4
    44Requires PHP: 7.3
    5 Stable tag: 2.8.5
    6 Tested up to: 6.5
     5Stable tag: 2.8.7
     6Tested up to: 6.8
    77License: GPL v2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • microsoft-start/trunk/routes/authenticationApi.php

    r3347358 r3359910  
    2929                ));
    3030                $response = wp_remote_post(
    31                     "https://api.msn.com/ugc/account/RedeemCode/{$parameters['redeemCode']}?wrapodata=false",
     31                    "{$msnAccountUrl}account/redeemcode?redeemCode={$parameters['redeemCode']}" . MSPH_OCID_APIKEY_QSP,
    3232                    [
    3333                        'timeout'       => 60,
  • microsoft-start/trunk/services/MSNClient.php

    r3352562 r3359910  
    369369        }
    370370
     371        if ($auth && $response && $response['response']['code'] == 401 && strpos($response['body'], 'Invalid access token.')) {
     372            TokenService::delete_token();
     373        }
    371374        return $response ? $response : null;
    372375    }
Note: See TracChangeset for help on using the changeset viewer.