lets break some themes :evil:

This commit is contained in:
barisusakli
2016-03-03 20:13:30 +02:00
parent 2936e79740
commit f3d2ad5f1f
7 changed files with 8 additions and 8 deletions

View File

@@ -56,8 +56,8 @@ var async = require('async'),
return next();
}
post.relativeTime = utils.toISOString(post.timestamp);
post.relativeEditTime = parseInt(post.edited, 10) !== 0 ? utils.toISOString(post.edited) : '';
post.timestampISO = utils.toISOString(post.timestamp);
post.editedISO = parseInt(post.edited, 10) !== 0 ? utils.toISOString(post.edited) : '';
Posts.parsePost(post, next);
}, next);
},