renamed event

This commit is contained in:
barisusakli
2014-03-17 17:38:47 -04:00
parent 8efc33d6a1
commit f83b7ee972
4 changed files with 4 additions and 4 deletions

View File

@@ -318,6 +318,6 @@ var db = require('./database'),
});
};
emitter.on('newpost', Categories.onNewPostMade);
emitter.on('event:newpost', Categories.onNewPostMade);
}(exports));

View File

@@ -69,7 +69,7 @@ var db = require('./database'),
db.incrObjectField('global', 'postCount');
emitter.emit('newpost', postData);
emitter.emit('event:newpost', postData);
plugins.fireHook('filter:post.get', postData, next);
},

View File

@@ -1022,7 +1022,7 @@ var async = require('async'),
Topics.addPostToTopic(postData.tid, postData.pid, postData.timestamp);
};
emitter.on('newpost', Topics.onNewPostMade);
emitter.on('event:newpost', Topics.onNewPostMade);
Topics.addPostToTopic = function(tid, pid, timestamp, callback) {
db.sortedSetAdd('tid:' + tid + ':posts', timestamp, pid, callback);

View File

@@ -350,7 +350,7 @@ var bcrypt = require('bcryptjs'),
User.setUserField(postData.uid, 'lastposttime', postData.timestamp);
};
emitter.on('newpost', User.onNewPostMade);
emitter.on('event:newpost', User.onNewPostMade);
User.addPostIdToUser = function(uid, pid, timestamp) {
db.sortedSetAdd('uid:' + uid + ':posts', timestamp, pid);