fixed outgoing route to handle links with querystrings in it (using req.query instead of req.url). closes #154.

This commit is contained in:
Julian Lam
2013-08-08 15:04:22 -04:00
parent e2d0ca9669
commit 08a45e40a2
3 changed files with 13 additions and 16 deletions

View File

@@ -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) {