Skip to content

Commit

Permalink
Homepage: Omit year in build events list
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Mar 4, 2017
1 parent dd6a906 commit d38a11b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/plugins/z#home/home.php
Expand Up @@ -316,7 +316,7 @@ public function execute($args=NULL)
generateItemHtml : function(n, t) {
var html = '<a href="' + t.link + '" title="' + t.title.toLowerCase() + ' (read more in the repository)">' + t.title + ' completed</a>';
var d = new Date(t.pubDate);
var niceDate = $.datepicker.formatDate('MM d, yy', d);
var niceDate = $.datepicker.formatDate('MM d', d);
html += ' ' + niceDate;
d.setDate(d.getDate() + 2);
var isNew = (new Date() < d);
Expand Down

0 comments on commit d38a11b

Please sign in to comment.