spaces vs tabs ugh

v1.18.x
Aziz Khoury 11 years ago
parent fa7db423c6
commit c7bd27fb3f

@ -16,21 +16,21 @@ var async = require('async'),
SocketPosts = {},
// a shy request-wannabe build from a socket for spam detection purposes
reqFromSocket = function(socket) {
var headers = socket.handshake.headers,
host = headers['host'],
referer = headers['referer'];
return {
'ip': headers['x-forwarded-for'] || socket.handshake.address.address,
'host': host,
'protocol': headers['secure'] ? 'https' : 'http',
'secure': !!headers['secure'],
'url': referer,
'path': referer.substr(referer.indexOf(host) + host.length),
'headers': headers
};
};
reqFromSocket = function(socket) {
var headers = socket.handshake.headers,
host = headers['host'],
referer = headers['referer'];
return {
'ip': headers['x-forwarded-for'] || socket.handshake.address.address,
'host': host,
'protocol': headers['secure'] ? 'https' : 'http',
'secure': !!headers['secure'],
'url': referer,
'path': referer.substr(referer.indexOf(host) + host.length),
'headers': headers
};
};
SocketPosts.reply = function(socket, data, callback) {
@ -43,7 +43,7 @@ SocketPosts.reply = function(socket, data, callback) {
}
data.uid = socket.uid;
data.req = reqFromSocket(socket);
data.req = reqFromSocket(socket);
topics.reply(data, function(err, postData) {
if(err) {

@ -141,16 +141,16 @@ module.exports = function(Topics) {
async.waterfall([
function(next) {
plugins.fireHook('filter:topic.reply', data, function(err, filteredData) {
if (err) {
return next(err);
}
content = filteredData.content || data.content;
next();
});
},
function(next) {
plugins.fireHook('filter:topic.reply', data, function(err, filteredData) {
if (err) {
return next(err);
}
content = filteredData.content || data.content;
next();
});
},
function(next) {
threadTools.exists(tid, next);
},
function(topicExists, next) {

Loading…
Cancel
Save