Changeset 2871042
- Timestamp:
- 02/25/2023 05:35:37 PM (3 years ago)
- Location:
- wp-youtube-live
- Files:
-
- 6 edited
- 1 copied
-
tags/1.8.5 (copied) (copied from wp-youtube-live/trunk)
-
tags/1.8.5/inc/EmbedYoutubeLiveStreaming.php (modified) (1 diff)
-
tags/1.8.5/readme.txt (modified) (2 diffs)
-
tags/1.8.5/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.8.5/inc/EmbedYoutubeLiveStreaming.php
r2871041 r2871042 275 275 276 276 // cache until first video starts. 277 $key = key( $all_videos_array ); 278 $cache_length = 600; 279 if ( $key ) { 280 $next_video = $all_videos_array[ $key ]; 281 if ( $next_video > time() ) { 282 $cache_length = $next_video - time() + 900; // add 15-minute “grace period” in case breadcast starts late. 283 } 277 $key = key( $all_videos_array ); 278 $next_video = $all_videos_array[ $key ]; 279 if ( $next_video > time() ) { 280 $cache_length = $next_video - time() + 900; // add 15-minute “grace period” in case breadcast starts late. 281 } else { 282 $cache_length = 600; 284 283 } 285 284 -
wp-youtube-live/tags/1.8.5/readme.txt
r2871041 r2871042 5 5 Requires at least: 3.6 6 6 Tested up to: 5.9.3 7 Stable tag: 1.8. 67 Stable tag: 1.8.5 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.8.6 =182 - Fix undefined index error when no upcoming videos are available183 184 181 = 1.8.5 = 185 182 - Prevent any errors from showing up when debug mode is disabled -
wp-youtube-live/tags/1.8.5/wp-youtube-live.php
r2871041 r2871042 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.8. 66 * Version: 1.8.5 7 7 * Author: Andrew Minion 8 8 * Author URI: https://andrewrminion.com/ … … 13 13 } 14 14 15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.8. 6' );15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.8.3' ); 16 16 17 17 /** -
wp-youtube-live/trunk/inc/EmbedYoutubeLiveStreaming.php
r2871041 r2871042 275 275 276 276 // cache until first video starts. 277 $key = key( $all_videos_array ); 278 $cache_length = 600; 279 if ( $key ) { 280 $next_video = $all_videos_array[ $key ]; 281 if ( $next_video > time() ) { 282 $cache_length = $next_video - time() + 900; // add 15-minute “grace period” in case breadcast starts late. 283 } 277 $key = key( $all_videos_array ); 278 $next_video = $all_videos_array[ $key ]; 279 if ( $next_video > time() ) { 280 $cache_length = $next_video - time() + 900; // add 15-minute “grace period” in case breadcast starts late. 281 } else { 282 $cache_length = 600; 284 283 } 285 284 -
wp-youtube-live/trunk/readme.txt
r2871041 r2871042 5 5 Requires at least: 3.6 6 6 Tested up to: 5.9.3 7 Stable tag: 1.8. 67 Stable tag: 1.8.5 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.8.6 =182 - Fix undefined index error when no upcoming videos are available183 184 181 = 1.8.5 = 185 182 - Prevent any errors from showing up when debug mode is disabled -
wp-youtube-live/trunk/wp-youtube-live.php
r2871041 r2871042 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.8. 66 * Version: 1.8.5 7 7 * Author: Andrew Minion 8 8 * Author URI: https://andrewrminion.com/ … … 13 13 } 14 14 15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.8. 6' );15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.8.3' ); 16 16 17 17 /**
Note: See TracChangeset
for help on using the changeset viewer.