changes to Date.now()

This commit is contained in:
Baris Soner Usakli
2013-06-19 21:39:41 -04:00
parent 0a0f8a21f0
commit 32b9db5771

View File

@@ -291,7 +291,7 @@ var utils = require('./../public/src/utils.js'),
'website':'', 'website':'',
'email' : email, 'email' : email,
'signature':'', 'signature':'',
'joindate' : new Date().getTime(), 'joindate' : Date.now(),
'picture': gravatar, 'picture': gravatar,
'gravatarpicture' : gravatar, 'gravatarpicture' : gravatar,
'uploadedpicture': '', 'uploadedpicture': '',
@@ -472,7 +472,7 @@ var utils = require('./../public/src/utils.js'),
var message = username + ' made a new post'; var message = username + ' made a new post';
notifications.create(message, 5, global.config.url + 'topic/' + slug + '#' + pid, 'notification_'+new Date().getTime(), function(nid) { notifications.create(message, 5, global.config.url + 'topic/' + slug + '#' + pid, 'notification_'+ Date.now(), function(nid) {
notifications.push(nid, followers); notifications.push(nid, followers);
}); });
}); });
@@ -751,7 +751,7 @@ var utils = require('./../public/src/utils.js'),
if (total > record) { if (total > record) {
RDB.set('global:active_user_record', total); RDB.set('global:active_user_record', total);
RDB.set('global:active_user_record_date', new Date().getTime()); RDB.set('global:active_user_record_date', Date.now());
} }
}); });
} }