Changeset 56752
- Timestamp:
- 10/01/2023 12:20:53 AM (14 months ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/file.php
r56735 r56752 2765 2765 '<code>wp_opcache_invalidate_directory()</code>' 2766 2766 ); 2767 // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_trigger_error2768 2767 trigger_error( $error_message ); 2769 2768 } -
trunk/src/wp-admin/includes/post.php
r56714 r56752 2012 2012 * Ignoring sanitization to avoid altering meta. Ignoring the nonce check because 2013 2013 * this is hooked on inner core hooks where a valid nonce was already checked. 2014 *2015 * @phpcs:disable WordPress.Security2016 2014 */ 2017 2015 $posted_data = isset( $_POST['data']['wp_autosave'] ) ? $_POST['data']['wp_autosave'] : $_POST; 2018 // phpcs:enable2019 2016 2020 2017 $post_type = get_post_type( $new_autosave['post_parent'] ); -
trunk/src/wp-includes/sitemaps/class-wp-sitemaps-renderer.php
r55210 r56752 132 132 if ( ! empty( $index_xml ) ) { 133 133 // All output is escaped within get_sitemap_index_xml(). 134 // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped135 134 echo $index_xml; 136 135 } … … 197 196 if ( ! empty( $sitemap_xml ) ) { 198 197 // All output is escaped within get_sitemap_xml(). 199 // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped200 198 echo $sitemap_xml; 201 199 } -
trunk/src/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php
r55210 r56752 26 26 27 27 if ( 'sitemap' === $type ) { 28 // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- All contentescaped below.28 // All content is escaped below. 29 29 echo $this->get_sitemap_stylesheet(); 30 30 } 31 31 32 32 if ( 'index' === $type ) { 33 // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- All contentescaped below.33 // All content is escaped below. 34 34 echo $this->get_sitemap_index_stylesheet(); 35 35 } -
trunk/src/wp-includes/template-canvas.php
r52352 r56752 21 21 <?php wp_body_open(); ?> 22 22 23 <?php echo $template_html; // phpcs:ignore WordPress.Security.EscapeOutput?>23 <?php echo $template_html; ?> 24 24 25 25 <?php wp_footer(); ?>
Note: See TracChangeset
for help on using the changeset viewer.