Use date number not day number.
--- a/publish/config.js Thu Aug 02 10:03:00 2012 +1000
+++ b/publish/config.js Sun Aug 05 17:16:49 2012 +1000
@@ -205,7 +205,7 @@
get publicationDate() {
var months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];
var d = this._publicationDate;
- return (d.getDay() < 10 ? '0' : '') + d.getDay() + ' ' + months[d.getMonth()] + ' ' + d.getFullYear();
+ return (d.getDate() < 10 ? '0' : '') + d.getDate() + ' ' + months[d.getMonth()] + ' ' + d.getFullYear();
},
get thisVersion() {