I18N: In `wp_maybe_decline_date()`, bail early if translation functions are not available, e.g. in `SHORTINIT` mode.
Fixes #34967 for trunk. Built from https://develop.svn.wordpress.org/trunk@35880 git-svn-id: http://core.svn.wordpress.org/trunk@35844 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
224d20e99b
commit
89e0d7dc9e
|
@ -172,6 +172,11 @@ function date_i18n( $dateformatstring, $unixtimestamp = false, $gmt = false ) {
|
|||
function wp_maybe_decline_date( $date ) {
|
||||
global $wp_locale;
|
||||
|
||||
// i18n functions are not available in SHORTINIT mode
|
||||
if ( ! function_exists( '_x' ) ) {
|
||||
return $date;
|
||||
}
|
||||
|
||||
/* translators: If months in your language require a genitive case,
|
||||
* translate this to 'on'. Do not translate into your own language.
|
||||
*/
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.5-alpha-35879';
|
||||
$wp_version = '4.5-alpha-35880';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue