Fixed coding standards

This commit is contained in:
Claudio Sanches 2019-10-02 11:21:19 -03:00
parent 162c5dd8a2
commit 830553accd
1 changed files with 4 additions and 4 deletions

View File

@ -699,7 +699,7 @@ function wc_product_class( $class = '', $product_id = null ) {
*/
function wc_query_string_form_fields( $values = null, $exclude = array(), $current_key = '', $return = false ) {
if ( is_null( $values ) ) {
$values = $_GET; // WPCS: input var ok, CSRF ok.
$values = $_GET; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
} elseif ( is_string( $values ) ) {
$url_parts = wp_parse_url( $values );
$values = array();
@ -707,8 +707,8 @@ function wc_query_string_form_fields( $values = null, $exclude = array(), $curre
if ( ! empty( $url_parts['query'] ) ) {
// This is to preserve full-stops, pluses and spaces in the query string when ran through parse_str.
$replace_chars = array(
'.' => '{dot}',
'+' => '{plus}',
'.' => '{dot}',
'+' => '{plus}',
);
$query_string = str_replace( array_keys( $replace_chars ), array_values( $replace_chars ), $url_parts['query'] );
@ -744,7 +744,7 @@ function wc_query_string_form_fields( $values = null, $exclude = array(), $curre
return $html;
}
echo $html; // WPCS: XSS ok.
echo $html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
/**