diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index bf710041e6..6ecf8271a6 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -2475,6 +2475,7 @@ function paginate_links( $args = '' ) { if ( isset( $url_parts[1] ) ) { wp_parse_str( $url_parts[1], $query_args ); + $query_args = urlencode_deep( $query_args ); } $pagenum_link = remove_query_arg( array_keys( $query_args ), $pagenum_link ); diff --git a/wp-includes/version.php b/wp-includes/version.php index e2a6922e93..aa2b562508 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-alpha-30132'; +$wp_version = '4.1-alpha-30133'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.