Changeset 2659415
- Timestamp:
- 01/18/2022 02:34:00 PM (4 years ago)
- Location:
- wp-youtube-live
- Files:
-
- 6 edited
- 1 copied
-
tags/1.7.20 (copied) (copied from wp-youtube-live/trunk)
-
tags/1.7.20/inc/EmbedYoutubeLiveStreaming.php (modified) (1 diff)
-
tags/1.7.20/readme.txt (modified) (2 diffs)
-
tags/1.7.20/wp-youtube-live.php (modified) (2 diffs)
-
trunk/inc/EmbedYoutubeLiveStreaming.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-youtube-live.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-youtube-live/tags/1.7.20/inc/EmbedYoutubeLiveStreaming.php
r2557850 r2659415 280 280 $upcoming_videos = maybe_unserialize( get_transient( 'youtube-live-upcoming-videos' ) ); 281 281 282 if ( count( $upcoming_videos ) > 1 ) {282 if ( is_countable( $upcoming_videos ) && count( $upcoming_videos ) > 1 ) { 283 283 unset( $upcoming_videos[$videoID] ); 284 284 $cache_length = reset( $upcoming_videos ); -
wp-youtube-live/tags/1.7.20/readme.txt
r2557850 r2659415 5 5 Requires at least: 3.6 6 6 Tested up to: 5.7 7 Stable tag: 1.7. 197 Stable tag: 1.7.20 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 179 179 == Changelog == 180 180 181 = 1.7.20 = 182 - Fix error when no upcoming videos are cached 183 181 184 = 1.7.19 = 182 185 - Add referer to API requests. -
wp-youtube-live/tags/1.7.20/wp-youtube-live.php
r2557850 r2659415 4 4 * Plugin URI: https://github.com/macbookandrew/wp-youtube-live 5 5 * Description: Displays the current YouTube live video from a specified channel 6 * Version: 1.7. 196 * Version: 1.7.20 7 7 * Author: Andrew Minion 8 8 * Author URI: https://andrewrminion.com/ … … 13 13 } 14 14 15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.7. 19' );15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.7.20' ); 16 16 17 17 /** -
wp-youtube-live/trunk/inc/EmbedYoutubeLiveStreaming.php
r2557850 r2659415 280 280 $upcoming_videos = maybe_unserialize( get_transient( 'youtube-live-upcoming-videos' ) ); 281 281 282 if ( count( $upcoming_videos ) > 1 ) {282 if ( is_countable( $upcoming_videos ) && count( $upcoming_videos ) > 1 ) { 283 283 unset( $upcoming_videos[$videoID] ); 284 284 $cache_length = reset( $upcoming_videos ); -
wp-youtube-live/trunk/readme.txt
r2557850 r2659415 5 5 Requires at least: 3.6 6 6 Tested up to: 5.7 7 Stable tag: 1.7. 197 Stable tag: 1.7.20 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 179 179 == Changelog == 180 180 181 = 1.7.20 = 182 - Fix error when no upcoming videos are cached 183 181 184 = 1.7.19 = 182 185 - Add referer to API requests. -
wp-youtube-live/trunk/wp-youtube-live.php
r2557850 r2659415 4 4 * Plugin URI: https://github.com/macbookandrew/wp-youtube-live 5 5 * Description: Displays the current YouTube live video from a specified channel 6 * Version: 1.7. 196 * Version: 1.7.20 7 7 * Author: Andrew Minion 8 8 * Author URI: https://andrewrminion.com/ … … 13 13 } 14 14 15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.7. 19' );15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.7.20' ); 16 16 17 17 /**
Note: See TracChangeset
for help on using the changeset viewer.