Changeset 2659419
- Timestamp:
- 01/18/2022 02:36:59 PM (4 years ago)
- Location:
- wp-youtube-live
- Files:
-
- 4 edited
- 1 copied
-
tags/1.7.21 (copied) (copied from wp-youtube-live/trunk)
-
tags/1.7.21/readme.txt (modified) (2 diffs)
-
tags/1.7.21/wp-youtube-live.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-youtube-live.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-youtube-live/tags/1.7.21/readme.txt
r2659415 r2659419 5 5 Requires at least: 3.6 6 6 Tested up to: 5.7 7 Stable tag: 1.7.2 07 Stable tag: 1.7.21 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.21 = 182 - Fix error on activation 183 181 184 = 1.7.20 = 182 185 - Fix error when no upcoming videos are cached -
wp-youtube-live/tags/1.7.21/wp-youtube-live.php
r2659415 r2659419 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.2 06 * Version: 1.7.21 7 7 * Author: Andrew Minion 8 8 * Author URI: https://andrewrminion.com/ … … 13 13 } 14 14 15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.7.2 0' );15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.7.21' ); 16 16 17 17 /** … … 262 262 */ 263 263 function wp_ytl_plugin_activation() { 264 $request_options = get_option( 'youtube_live_settings' );264 $request_options = get_option( 'youtube_live_settings', array() ); 265 265 266 266 // removed in v1.7.0 -
wp-youtube-live/trunk/readme.txt
r2659415 r2659419 5 5 Requires at least: 3.6 6 6 Tested up to: 5.7 7 Stable tag: 1.7.2 07 Stable tag: 1.7.21 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.21 = 182 - Fix error on activation 183 181 184 = 1.7.20 = 182 185 - Fix error when no upcoming videos are cached -
wp-youtube-live/trunk/wp-youtube-live.php
r2659415 r2659419 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.2 06 * Version: 1.7.21 7 7 * Author: Andrew Minion 8 8 * Author URI: https://andrewrminion.com/ … … 13 13 } 14 14 15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.7.2 0' );15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.7.21' ); 16 16 17 17 /** … … 262 262 */ 263 263 function wp_ytl_plugin_activation() { 264 $request_options = get_option( 'youtube_live_settings' );264 $request_options = get_option( 'youtube_live_settings', array() ); 265 265 266 266 // removed in v1.7.0
Note: See TracChangeset
for help on using the changeset viewer.