Plugin Directory

Changeset 2659419


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

Update to version 1.7.21 from GitHub

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

Legend:

Unmodified
Added
Removed
  • wp-youtube-live/tags/1.7.21/readme.txt

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

    r2659415 r2659419  
    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.20
     6 * Version: 1.7.21
    77 * Author: Andrew Minion
    88 * Author URI: https://andrewrminion.com/
     
    1313}
    1414
    15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.7.20' );
     15define( 'WP_YOUTUBE_LIVE_VERSION', '1.7.21' );
    1616
    1717/**
     
    262262 */
    263263function wp_ytl_plugin_activation() {
    264     $request_options = get_option( 'youtube_live_settings' );
     264    $request_options = get_option( 'youtube_live_settings', array() );
    265265
    266266    // removed in v1.7.0
  • wp-youtube-live/trunk/readme.txt

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

    r2659415 r2659419  
    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.20
     6 * Version: 1.7.21
    77 * Author: Andrew Minion
    88 * Author URI: https://andrewrminion.com/
     
    1313}
    1414
    15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.7.20' );
     15define( 'WP_YOUTUBE_LIVE_VERSION', '1.7.21' );
    1616
    1717/**
     
    262262 */
    263263function wp_ytl_plugin_activation() {
    264     $request_options = get_option( 'youtube_live_settings' );
     264    $request_options = get_option( 'youtube_live_settings', array() );
    265265
    266266    // removed in v1.7.0
Note: See TracChangeset for help on using the changeset viewer.