mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-01 19:46:01 +01:00
fixed outgoing route to handle links with querystrings in it (using req.query instead of req.url). closes #154.
This commit is contained in:
@@ -368,19 +368,15 @@ var express = require('express'),
|
||||
});
|
||||
|
||||
app.get('/outgoing', function(req, res) {
|
||||
var url = req.url.split('?');
|
||||
if (!req.query.url) return res.redirect('/404');
|
||||
|
||||
if (url[1]) {
|
||||
app.build_header({ req: req, res: res }, function(err, header) {
|
||||
res.send(header + templates['outgoing'].parse({
|
||||
url: url[1],
|
||||
home: global.nconf.get('url')
|
||||
}) + templates['footer']);
|
||||
});
|
||||
} else {
|
||||
res.status(404);
|
||||
res.redirect(global.nconf.get('relative_path') + '/404');
|
||||
}
|
||||
app.build_header({ req: req, res: res }, function(err, header) {
|
||||
res.send(
|
||||
header +
|
||||
'\n\t<script>templates.ready(function(){ajaxify.go("outgoing?url=' + req.query.url + '");});</script>' +
|
||||
templates['footer']
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
app.get('/search', function(req, res) {
|
||||
|
||||
Reference in New Issue
Block a user