Update common/comment.js

This commit is contained in:
Mario Fasold 2012-12-15 13:27:31 +01:00
parent 8b7421b0d2
commit 004c411449

View file

@ -4,7 +4,7 @@ Meteor.methods({
var post=Posts.findOne(postId);
var postUser=Meteor.users.findOne(post.userId);
var timeSinceLastComment=timeSinceLast(user, Comments);
var text= cleanUp(text);
var cleanText= cleanUp(text);
var properties={
'commentAuthorId': user._id,