From ab2d34ba3fe95d0324d544ca2ca92c2bf0b533aa Mon Sep 17 00:00:00 2001 From: akoskaaa Date: Sun, 3 Apr 2016 18:53:11 +0200 Subject: Fixed #25856 -- Added %B support to Date.strftime. This enables the admin to display the correct localized month name if %B is used in the date format. --- js_tests/admin/core.test.js | 1 + 1 file changed, 1 insertion(+) (limited to 'js_tests/admin') diff --git a/js_tests/admin/core.test.js b/js_tests/admin/core.test.js index 43fb27a7af..7f0a4d6fda 100644 --- a/js_tests/admin/core.test.js +++ b/js_tests/admin/core.test.js @@ -54,6 +54,7 @@ test('Date.getHourMinuteSecond', function(assert) { test('Date.strftime', function(assert) { var date = new Date(2014, 6, 1, 11, 0, 5); assert.equal(date.strftime('%Y-%m-%d %H:%M:%S'), '2014-07-01 11:00:05'); + assert.equal(date.strftime('%B %d, %Y'), 'July 01, 2014'); }); test('String.strptime', function(assert) { -- cgit v1.3