Plugin Directory

Changeset 2659415


Ignore:
Timestamp:
01/18/2022 02:34:00 PM (4 years ago)
Author:
macbookandrew
Message:

Update to version 1.7.20 from GitHub

Location:
wp-youtube-live
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-youtube-live/tags/1.7.20/inc/EmbedYoutubeLiveStreaming.php

    r2557850 r2659415  
    280280        $upcoming_videos = maybe_unserialize( get_transient( 'youtube-live-upcoming-videos' ) );
    281281
    282         if ( count( $upcoming_videos ) > 1 ) {
     282        if ( is_countable( $upcoming_videos ) && count( $upcoming_videos ) > 1 ) {
    283283            unset( $upcoming_videos[$videoID] );
    284284            $cache_length = reset( $upcoming_videos );
  • wp-youtube-live/tags/1.7.20/readme.txt

    r2557850 r2659415  
    55Requires at least: 3.6
    66Tested up to:      5.7
    7 Stable tag:        1.7.19
     7Stable tag:        1.7.20
    88License:           GPLv2 or later
    99License URI:       http://www.gnu.org/licenses/gpl-2.0.html
     
    179179== Changelog ==
    180180
     181= 1.7.20 =
     182- Fix error when no upcoming videos are cached
     183
    181184= 1.7.19 =
    182185- Add referer to API requests.
  • wp-youtube-live/tags/1.7.20/wp-youtube-live.php

    r2557850 r2659415  
    44 * Plugin URI: https://github.com/macbookandrew/wp-youtube-live
    55 * Description: Displays the current YouTube live video from a specified channel
    6  * Version: 1.7.19
     6 * Version: 1.7.20
    77 * Author: Andrew Minion
    88 * Author URI: https://andrewrminion.com/
     
    1313}
    1414
    15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.7.19' );
     15define( 'WP_YOUTUBE_LIVE_VERSION', '1.7.20' );
    1616
    1717/**
  • wp-youtube-live/trunk/inc/EmbedYoutubeLiveStreaming.php

    r2557850 r2659415  
    280280        $upcoming_videos = maybe_unserialize( get_transient( 'youtube-live-upcoming-videos' ) );
    281281
    282         if ( count( $upcoming_videos ) > 1 ) {
     282        if ( is_countable( $upcoming_videos ) && count( $upcoming_videos ) > 1 ) {
    283283            unset( $upcoming_videos[$videoID] );
    284284            $cache_length = reset( $upcoming_videos );
  • wp-youtube-live/trunk/readme.txt

    r2557850 r2659415  
    55Requires at least: 3.6
    66Tested up to:      5.7
    7 Stable tag:        1.7.19
     7Stable tag:        1.7.20
    88License:           GPLv2 or later
    99License URI:       http://www.gnu.org/licenses/gpl-2.0.html
     
    179179== Changelog ==
    180180
     181= 1.7.20 =
     182- Fix error when no upcoming videos are cached
     183
    181184= 1.7.19 =
    182185- Add referer to API requests.
  • wp-youtube-live/trunk/wp-youtube-live.php

    r2557850 r2659415  
    44 * Plugin URI: https://github.com/macbookandrew/wp-youtube-live
    55 * Description: Displays the current YouTube live video from a specified channel
    6  * Version: 1.7.19
     6 * Version: 1.7.20
    77 * Author: Andrew Minion
    88 * Author URI: https://andrewrminion.com/
     
    1313}
    1414
    15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.7.19' );
     15define( 'WP_YOUTUBE_LIVE_VERSION', '1.7.20' );
    1616
    1717/**
Note: See TracChangeset for help on using the changeset viewer.