diff --git a/core/js/js.js b/core/js/js.js
index e65b33d86077d4797643cc0efae4961e487abbc8..00adcc514bc911e1d0a5292482f891b78cf95057 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -1338,7 +1338,7 @@ OC.Util = {
 	 * @returns {string} timestamp formatted as requested
 	 */
 	formatDate: function (timestamp, format) {
-		format = format || "MMMM D, YYYY H:mm";
+		format = format || "LLL";
 		return moment(timestamp).format(format);
 	},