From 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 10:05:23 +0200 Subject: Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my familly --- .../class-wp-simplepie-sanitize-kses.php | 57 ---------------------- 1 file changed, 57 deletions(-) delete mode 100644 srcs/wordpress/wp-includes/class-wp-simplepie-sanitize-kses.php (limited to 'srcs/wordpress/wp-includes/class-wp-simplepie-sanitize-kses.php') diff --git a/srcs/wordpress/wp-includes/class-wp-simplepie-sanitize-kses.php b/srcs/wordpress/wp-includes/class-wp-simplepie-sanitize-kses.php deleted file mode 100644 index 2aba304..0000000 --- a/srcs/wordpress/wp-includes/class-wp-simplepie-sanitize-kses.php +++ /dev/null @@ -1,57 +0,0 @@ -)/', $data ) ) { - $type |= SIMPLEPIE_CONSTRUCT_HTML; - } else { - $type |= SIMPLEPIE_CONSTRUCT_TEXT; - } - } - if ( $type & SIMPLEPIE_CONSTRUCT_BASE64 ) { - $data = base64_decode( $data ); - } - if ( $type & ( SIMPLEPIE_CONSTRUCT_HTML | SIMPLEPIE_CONSTRUCT_XHTML ) ) { - $data = wp_kses_post( $data ); - if ( $this->output_encoding !== 'UTF-8' ) { - $data = $this->registry->call( 'Misc', 'change_encoding', array( $data, 'UTF-8', $this->output_encoding ) ); - } - return $data; - } else { - return parent::sanitize( $data, $type, $base ); - } - } -} -- cgit