Date/Time: When determining whether to decline the month name in `wp_maybe_decline_date()`, take word boundaries into account.
Add more unit tests. Props Rarst, Clorith, timon33, Xendo, SergeyBiryukov. Merges [46862] to the 5.3 branch. Fixes #48606. Built from https://develop.svn.wordpress.org/branches/5.3@46863 git-svn-id: http://core.svn.wordpress.org/branches/5.3@46663 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
44bff0da78
commit
e5f1a70a87
|
@ -335,24 +335,29 @@ function wp_maybe_decline_date( $date ) {
|
|||
$months = $wp_locale->month;
|
||||
$months_genitive = $wp_locale->month_genitive;
|
||||
|
||||
// Match a format like 'j F Y' or 'j. F'
|
||||
if ( preg_match( '#^\d{1,2}\.? [^\d ]+#u', $date ) ) {
|
||||
|
||||
/*
|
||||
* Match a format like 'j F Y' or 'j. F' (day of the month, followed by month name)
|
||||
* and decline the month.
|
||||
*/
|
||||
if ( preg_match( '#\b\d{1,2}\.? [^\d ]+\b#u', $date ) ) {
|
||||
foreach ( $months as $key => $month ) {
|
||||
$months[ $key ] = '# ' . $month . '( |$)#u';
|
||||
$months[ $key ] = '# ' . preg_quote( $month, '#' ) . '\b#u';
|
||||
}
|
||||
|
||||
foreach ( $months_genitive as $key => $month ) {
|
||||
$months_genitive[ $key ] = ' ' . $month . '$1';
|
||||
$months_genitive[ $key ] = ' ' . $month;
|
||||
}
|
||||
|
||||
$date = preg_replace( $months, $months_genitive, $date );
|
||||
}
|
||||
|
||||
// Match a format like 'F jS' or 'F j' and change it to 'j F'
|
||||
if ( preg_match( '#^[^\d ]+ \d{1,2}(st|nd|rd|th)? #u', trim( $date ) ) ) {
|
||||
/*
|
||||
* Match a format like 'F jS' or 'F j' (month name, followed by day with an optional ordinal suffix)
|
||||
* and change it to declined 'j F'.
|
||||
*/
|
||||
if ( preg_match( '#\b[^\d ]+ \d{1,2}(st|nd|rd|th)?\b#u', trim( $date ) ) ) {
|
||||
foreach ( $months as $key => $month ) {
|
||||
$months[ $key ] = '#' . $month . ' (\d{1,2})(st|nd|rd|th)?#u';
|
||||
$months[ $key ] = '#\b' . preg_quote( $month, '#' ) . ' (\d{1,2})(st|nd|rd|th)?\b#u';
|
||||
}
|
||||
|
||||
foreach ( $months_genitive as $key => $month ) {
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.3.1-alpha-46861';
|
||||
$wp_version = '5.3.1-alpha-46863';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue