PluginProbe
Powered Cache – Caching and Optimization for WordPress – Easily Improve PageSpeed & Web Vitals Score / 3.7.2
Powered Cache – Caching and Optimization for WordPress – Easily Improve PageSpeed & Web Vitals Score v3.7.2
trunk 1.0 1.0.1 1.1 1.1.1 1.1.2 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 2.0 2.0.1 2.0.2 2.0.3 2.0.4 2.1 2.1.1 2.1.2 2.2 2.2.1 All 69 releases
← All changes | includes/classes/AdvancedCache.php +2 -2 trunk3.7.2 View file →
@@ -138,10 +138,9 @@
138 138 *
139 139 * @since 2.0
140 140 */
141 141 public function purge_page_cache_network_wide() {
142 - $nonce = isset( $_GET['_wpnonce'] ) ? sanitize_text_field( wp_unslash( $_GET['_wpnonce'] ) ) : '';
143 - if ( ! wp_verify_nonce( $nonce, 'powered_cache_purge_page_cache_network' ) ) {
142 + if ( ! wp_verify_nonce( $_GET['_wpnonce'], 'powered_cache_purge_page_cache_network' ) ) { // phpcs:ignore
144 143 wp_nonce_ays( '' );
145 144 }
146 145
147 146 if ( current_user_can( 'manage_network' ) ) {
@@ -758,4 +757,5 @@
758 757 }
759 758 }
760 759
761 760 }
761 +