mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-04 21:15:55 +01:00
closes #306
This commit is contained in:
@@ -482,7 +482,7 @@ var user = require('./../user.js'),
|
||||
|
||||
user.getUserData(uid, function(err, data) {
|
||||
if (data) {
|
||||
data.joindate = utils.relativeTime(data.joindate);
|
||||
data.joindate = new Date(parseInt(data.joindate, 10)).toISOString();
|
||||
|
||||
if (!data.birthday) {
|
||||
data.age = '';
|
||||
|
||||
Reference in New Issue
Block a user