Skip to content
Snippets Groups Projects
Commit 0519d19d authored by deuce's avatar deuce
Browse files

Change the time format for display.

parent 67bab136
Branches
Tags
No related merge requests found
......@@ -17,6 +17,6 @@ if (!base.open()) {
var hdrs = podcast_load_headers(base, podcast_opts.From, podcast_opts.To);
for (i in hdrs) {
var item_info = podcast_get_info(base, hdrs[i]);
print('<a href="index.xjs?page=episode.ssjs&episode='+parseInt(i+1)+'">'+item_info.title+'</a><br>');
print('<a href="index.xjs?page=episode.ssjs&episode='+parseInt(i+1)+'">'+strftime("%B %e %Y", hdrs[i].when_written_time) + " " + item_info.title+'</a><br>');
print('<p>'+item_info.description+'</p>');
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment