Fix for issue #342: "You can contribute to our field guide here" Page Not Found

This commit is contained in:
chilltrain
2015-04-23 16:29:18 -05:00
parent 92db9e5aba
commit d75a1b5973

View File

@ -71,7 +71,7 @@ exports.returnNextFieldGuide = function(req, res, next) {
fieldGuide = fieldGuide.pop();
if (fieldGuide === undefined) {
req.flash('success', {
msg: "You've read all our current Field Guide entries. You can contribute to our Field Guide <a href='https://github.com/FreeCodeCamp/freecodecamp/blob/nonprofit-show/seed_data/fieldGuides.json'>here</a>."
msg: "You've read all our current Field Guide entries. You can contribute to our Field Guide <a href='https://github.com/FreeCodeCamp/freecodecamp/blob/master/seed_data/field-guides.json'>here</a>."
});
return res.redirect('../field-guide/how-do-i-use-this-guide?');
}