Changeset 2712290
- Timestamp:
- 04/20/2022 06:11:16 PM (4 years ago)
- Location:
- wp-youtube-live
- Files:
-
- 4 edited
- 1 copied
-
tags/1.8.3 (copied) (copied from wp-youtube-live/trunk)
-
tags/1.8.3/readme.txt (modified) (2 diffs)
-
tags/1.8.3/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.8.3/readme.txt
r2712285 r2712290 5 5 Requires at least: 3.6 6 6 Tested up to: 5.9.3 7 Stable tag: 1.8. 27 Stable tag: 1.8.3 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.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 181 191 = 1.8.0 = 182 192 - Fix reported security issues -
wp-youtube-live/tags/1.8.3/wp-youtube-live.php
r2711799 r2712290 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. 26 * Version: 1.8.3 7 7 * Author: Andrew Minion 8 8 * Author URI: https://andrewrminion.com/ … … 13 13 } 14 14 15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.8. 2' );15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.8.3' ); 16 16 17 17 /** … … 196 196 if ( get_option( 'youtube_live_settings', 'debugging' ) && is_user_logged_in() ) { 197 197 $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 . ' -->'; 199 199 $json_data['error'] . $debugging_code; 200 200 } -
wp-youtube-live/trunk/readme.txt
r2712285 r2712290 5 5 Requires at least: 3.6 6 6 Tested up to: 5.9.3 7 Stable tag: 1.8. 27 Stable tag: 1.8.3 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.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 181 191 = 1.8.0 = 182 192 - Fix reported security issues -
wp-youtube-live/trunk/wp-youtube-live.php
r2711799 r2712290 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. 26 * Version: 1.8.3 7 7 * Author: Andrew Minion 8 8 * Author URI: https://andrewrminion.com/ … … 13 13 } 14 14 15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.8. 2' );15 define( 'WP_YOUTUBE_LIVE_VERSION', '1.8.3' ); 16 16 17 17 /** … … 196 196 if ( get_option( 'youtube_live_settings', 'debugging' ) && is_user_logged_in() ) { 197 197 $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 . ' -->'; 199 199 $json_data['error'] . $debugging_code; 200 200 }
Note: See TracChangeset
for help on using the changeset viewer.