Merge pull request #1279 from AlexeyMK/patch-1

fixing typo in newCommentSubscribed notification
This commit is contained in:
Sacha Greif 2016-03-24 11:35:04 +09:00
commit 2d946c07a5

View file

@ -61,7 +61,7 @@ var notifications = {
return this.authorName+' left a new comment on "' + this.postTitle + '"';
},
emailTemplate: "notification_new_comment",
onsite: "notification_new_comment"
onsiteTemplate: "notification_new_comment"
}
};
@ -94,4 +94,4 @@ _.each(notifications, function (notification, notificationName) {
Herald.addCourier(notificationName, courier);
});
});