From b74003c970497da708106799ef83de36f7079fdc Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Tue, 1 Sep 2015 10:19:24 -0700 Subject: [PATCH] Language: Fix 'pretty' fallback in getDateFormatString() * If using 'default', still fallback to 'date' if 'pretty' is unavailable. * Fix instance caching of 'default', which never worked since $pref would be changed inside the !isset() block. Bug: T110945 Change-Id: Ic53b279f8741371fa1cb642c53e6d487cb1c6b81 --- languages/Language.php | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/languages/Language.php b/languages/Language.php index 370e2ed8c8..b47442d75c 100644 --- a/languages/Language.php +++ b/languages/Language.php @@ -2270,30 +2270,33 @@ class Language { /** * Get a format string for a given type and preference - * @param string $type May be date, time or both - * @param string $pref The format name as it appears in Messages*.php + * @param string $type May be 'date', 'time', 'both', or 'pretty'. + * @param string $pref The format name as it appears in Messages*.php under + * $datePreferences. * * @since 1.22 New type 'pretty' that provides a more readable timestamp format * * @return string */ function getDateFormatString( $type, $pref ) { + $wasDefault = false; + if ( $pref == 'default' ) { + $wasDefault = true; + $pref = $this->getDefaultDateFormat(); + } + if ( !isset( $this->dateFormatStrings[$type][$pref] ) ) { - if ( $pref == 'default' ) { - $pref = $this->getDefaultDateFormat(); - $df = self::$dataCache->getSubitem( $this->mCode, 'dateFormats', "$pref $type" ); - } else { - $df = self::$dataCache->getSubitem( $this->mCode, 'dateFormats', "$pref $type" ); + $df = self::$dataCache->getSubitem( $this->mCode, 'dateFormats', "$pref $type" ); - if ( $type === 'pretty' && $df === null ) { - $df = $this->getDateFormatString( 'date', $pref ); - } + if ( $type === 'pretty' && $df === null ) { + $df = $this->getDateFormatString( 'date', $pref ); + } - if ( $df === null ) { - $pref = $this->getDefaultDateFormat(); - $df = self::$dataCache->getSubitem( $this->mCode, 'dateFormats', "$pref $type" ); - } + if ( !$wasDefault && $df === null ) { + $pref = $this->getDefaultDateFormat(); + $df = self::$dataCache->getSubitem( $this->mCode, 'dateFormats', "$pref $type" ); } + $this->dateFormatStrings[$type][$pref] = $df; } return $this->dateFormatStrings[$type][$pref]; -- 2.20.1