diff --git a/core/client/views/post-settings.js b/core/client/views/post-settings.js index 51ac927320..87c63c330f 100644 --- a/core/client/views/post-settings.js +++ b/core/client/views/post-settings.js @@ -134,7 +134,7 @@ }, { success : function (model, response, options) { /*jslint unparam:true*/ - pubDateEl.value = moment(model.get('published_at'), parseDateFormats).format(displayDateFormat); + pubDateEl.value = moment(model.get('published_at')).format(displayDateFormat); Ghost.notifications.addItem({ type: 'success', message: 'Publish date successfully changed to ' + pubDateEl.value + '.',