Skip to content

Commit 6e43811

Browse files
Fix sanitize_title_with_dashes to handle uppercase multiplication sign encoding in 'save' context
1 parent 750b96b commit 6e43811

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/wp-includes/formatting.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2288,6 +2288,7 @@ function sanitize_title_with_dashes( $title, $raw_title = '', $context = 'displa
22882288
$times_replacements = array( '×', '×', '×' );
22892289
if ( 'save' === $context ) {
22902290
$times_replacements[] = '%c3%97';
2291+
$times_replacements[] = '%C3%97';
22912292
}
22922293
$title = str_replace( $times_replacements, 'x', $title );
22932294

0 commit comments

Comments
 (0)