Make WordPress Core


Ignore:
Timestamp:
01/06/2022 05:55:41 PM (3 years ago)
Author:
desrosj
Message:

Grouped backports to the 5.6 branch.

  • Query: Improve sanitization within WP_Tax_Query.
  • Query: Improve sanitization within WP_Meta_Query.
  • Upgrade/Install: Avoid using unserialize() unnecessarily.
  • Formatting: Correctly encode ASCII characters in post slugs.

Merges [52454-52457] to the 5.6 branch.
Props vortfu, dd32, ehtis, zieladam, whyisjake, xknown, peterwilsoncc, desrosj, iandunn.

Location:
branches/5.6
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.6

  • branches/5.6/src/wp-includes/post.php

    r50052 r52467  
    47294729            $slug = substr( $slug, 0, $length );
    47304730        } else {
    4731             $slug = utf8_uri_encode( $decoded_slug, $length );
     4731            $slug = utf8_uri_encode( $decoded_slug, $length, true );
    47324732        }
    47334733    }
Note: See TracChangeset for help on using the changeset viewer.