fixed #256 - where saving and retrieval of RSS feeds wasn't working on some instances due to a relative path being passed to read/writeFile

v1.18.x
Julian Lam 12 years ago
parent 02a02fa64c
commit 201fb4d73e

@ -212,7 +212,7 @@ var express = require('express'),
var tid = req.params.topic_id;
if (tid.match(/^\d+\.rss$/)) {
fs.readFile('feeds/topics/' + tid, function (err, data) {
fs.readFile(path.join(__dirname, '../', 'feeds/topics', tid), function (err, data) {
if (err) {
res.type('text').send(404, "Unable to locate an rss feed at this location.");
return;
@ -280,7 +280,7 @@ var express = require('express'),
var cid = req.params.category_id;
if (cid.match(/^\d+\.rss$/)) {
fs.readFile('feeds/categories/' + cid, function (err, data) {
fs.readFile(path.join(__dirname, '../', 'feeds/categories', cid), function (err, data) {
if (err) {
res.type('text').send(404, "Unable to locate an rss feed at this location.");
return;

Loading…
Cancel
Save