Plugin Directory

Changeset 2712290


Ignore:
Timestamp:
04/20/2022 06:11:16 PM (4 years ago)
Author:
macbookandrew
Message:

Update to version 1.8.3 from GitHub

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

Legend:

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

    r2712285 r2712290  
    55Requires at least: 3.6
    66Tested up to:      5.9.3
    7 Stable tag:        1.8.2
     7Stable tag:        1.8.3
    88License:           GPLv2 or later
    99License URI:       http://www.gnu.org/licenses/gpl-2.0.html
     
    179179== Changelog ==
    180180
     181= 1.8.3 =
     182- Escape admin-visible debug output
     183
     184= 1.8.2 =
     185- Escape oembed output
     186
     187= 1.8.1 =
     188- Update code documentation
     189- Update plugin branding images
     190
    181191= 1.8.0 =
    182192- Fix reported security issues
  • wp-youtube-live/tags/1.8.3/wp-youtube-live.php

    r2711799 r2712290  
    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.8.2
     6 * Version: 1.8.3
    77 * Author: Andrew Minion
    88 * Author URI: https://andrewrminion.com/
     
    1313}
    1414
    15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.8.2' );
     15define( 'WP_YOUTUBE_LIVE_VERSION', '1.8.3' );
    1616
    1717/**
     
    196196    if ( get_option( 'youtube_live_settings', 'debugging' ) && is_user_logged_in() ) {
    197197        $debugging_code = var_export( $youtube_live, true ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_var_export -- because this is only available for admins if they enable the debug option.
    198         echo '<!-- YouTube Live debugging: ' . "\n" . $debugging_code . "\n" . ' -->'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- because this is only available for admins if they enable the debug option.
     198        echo '<!-- YouTube Live debugging: ' . PHP_EOL . wp_kses_post( $debugging_code ) . PHP_EOL . ' -->';
    199199        $json_data['error'] . $debugging_code;
    200200    }
  • wp-youtube-live/trunk/readme.txt

    r2712285 r2712290  
    55Requires at least: 3.6
    66Tested up to:      5.9.3
    7 Stable tag:        1.8.2
     7Stable tag:        1.8.3
    88License:           GPLv2 or later
    99License URI:       http://www.gnu.org/licenses/gpl-2.0.html
     
    179179== Changelog ==
    180180
     181= 1.8.3 =
     182- Escape admin-visible debug output
     183
     184= 1.8.2 =
     185- Escape oembed output
     186
     187= 1.8.1 =
     188- Update code documentation
     189- Update plugin branding images
     190
    181191= 1.8.0 =
    182192- Fix reported security issues
  • wp-youtube-live/trunk/wp-youtube-live.php

    r2711799 r2712290  
    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.8.2
     6 * Version: 1.8.3
    77 * Author: Andrew Minion
    88 * Author URI: https://andrewrminion.com/
     
    1313}
    1414
    15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.8.2' );
     15define( 'WP_YOUTUBE_LIVE_VERSION', '1.8.3' );
    1616
    1717/**
     
    196196    if ( get_option( 'youtube_live_settings', 'debugging' ) && is_user_logged_in() ) {
    197197        $debugging_code = var_export( $youtube_live, true ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_var_export -- because this is only available for admins if they enable the debug option.
    198         echo '<!-- YouTube Live debugging: ' . "\n" . $debugging_code . "\n" . ' -->'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- because this is only available for admins if they enable the debug option.
     198        echo '<!-- YouTube Live debugging: ' . PHP_EOL . wp_kses_post( $debugging_code ) . PHP_EOL . ' -->';
    199199        $json_data['error'] . $debugging_code;
    200200    }
Note: See TracChangeset for help on using the changeset viewer.