Plugin Directory

Changeset 3416056


Ignore:
Timestamp:
12/10/2025 07:22:56 AM (4 months ago)
Author:
wpstream
Message:

Update to version 4.9.7 from GitHub

Location:
wpstream
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wpstream/tags/4.9.7/includes/class-wpstream-live-api-connection.php

    r3415067 r3416056  
    10541054    public function wpstream_get_token(){
    10551055        $token =  get_transient('wpstream_token_api');
    1056         if ( false === $token || $token==='') {
     1056        if ( false === $token || $token === '' || $token=== NULL ) {
    10571057            $token = $this->wpstream_club_get_token();
    10581058            if ($token !== false){
  • wpstream/tags/4.9.7/readme.txt

    r3415067 r3416056  
    55Tested up to: 6.8
    66Requires PHP: 7.1
    7 Stable tag: 4.9.6
     7Stable tag: 4.9.7
    88License: GPL
    99License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
     
    136136== Changelog ==
    137137
     138= 4.9.7 =
     139* Fix - Login during Quick Start onboarding
     140
    138141= 4.9.6 =
    139142* Fix - Show paid channels/VODs on the My Account dashboard
  • wpstream/tags/4.9.7/wpstream.php

    r3415067 r3416056  
    44 * Plugin URI:        http://wpstream.net
    55 * Description:       WpStream is a platform that allows you to live stream, create Video-on-Demand, and offer Pay-Per-View videos. We provide an affordable and user-friendly way for businesses, non-profits, and public institutions to broadcast their content and monetize their work.
    6  * Version:           4.9.6
     6 * Version:           4.9.7
    77 * Author:            wpstream
    88 * Author URI:        http://wpstream.net
     
    1515    die;
    1616}
    17 define('WPSTREAM_PLUGIN_VERSION', '4.9.6');
     17define('WPSTREAM_PLUGIN_VERSION', '4.9.7');
    1818define('WPSTREAM_CLUBLINK', 'wpstream.net');
    1919define('WPSTREAM_CLUBLINKSSL', 'https');
  • wpstream/trunk/includes/class-wpstream-live-api-connection.php

    r3415067 r3416056  
    10541054    public function wpstream_get_token(){
    10551055        $token =  get_transient('wpstream_token_api');
    1056         if ( false === $token || $token==='') {
     1056        if ( false === $token || $token === '' || $token=== NULL ) {
    10571057            $token = $this->wpstream_club_get_token();
    10581058            if ($token !== false){
  • wpstream/trunk/readme.txt

    r3415067 r3416056  
    55Tested up to: 6.8
    66Requires PHP: 7.1
    7 Stable tag: 4.9.6
     7Stable tag: 4.9.7
    88License: GPL
    99License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
     
    136136== Changelog ==
    137137
     138= 4.9.7 =
     139* Fix - Login during Quick Start onboarding
     140
    138141= 4.9.6 =
    139142* Fix - Show paid channels/VODs on the My Account dashboard
  • wpstream/trunk/wpstream.php

    r3415067 r3416056  
    44 * Plugin URI:        http://wpstream.net
    55 * Description:       WpStream is a platform that allows you to live stream, create Video-on-Demand, and offer Pay-Per-View videos. We provide an affordable and user-friendly way for businesses, non-profits, and public institutions to broadcast their content and monetize their work.
    6  * Version:           4.9.6
     6 * Version:           4.9.7
    77 * Author:            wpstream
    88 * Author URI:        http://wpstream.net
     
    1515    die;
    1616}
    17 define('WPSTREAM_PLUGIN_VERSION', '4.9.6');
     17define('WPSTREAM_PLUGIN_VERSION', '4.9.7');
    1818define('WPSTREAM_CLUBLINK', 'wpstream.net');
    1919define('WPSTREAM_CLUBLINKSSL', 'https');
Note: See TracChangeset for help on using the changeset viewer.