add tpl path to error messages

v1.18.x
Barış Soner Uşaklı 7 years ago
parent 9034424369
commit e36657d48c

@ -211,7 +211,7 @@ middleware.templatesOnDemand = function (req, res, next) {
if (!filePath.endsWith('.js')) { if (!filePath.endsWith('.js')) {
return next(); return next();
} }
var tplPath = filePath.replace(/\.js$/, '.tpl');
if (workingCache[filePath]) { if (workingCache[filePath]) {
workingCache[filePath].push(next); workingCache[filePath].push(next);
return; return;
@ -234,11 +234,11 @@ middleware.templatesOnDemand = function (req, res, next) {
} }
workingCache[filePath] = [next]; workingCache[filePath] = [next];
fs.readFile(filePath.replace(/\.js$/, '.tpl'), 'utf8', cb); fs.readFile(tplPath, 'utf8', cb);
}, },
function (source, cb) { function (source, cb) {
if (!source) { if (!source) {
return cb(new Error('[[error:templatesOnDemand.source-template-empty]]')); return cb(new Error('[[error:templatesOnDemand.source-template-empty, ' + tplPath + ']]'));
} }
Benchpress.precompile({ Benchpress.precompile({
source: source, source: source,
@ -247,7 +247,7 @@ middleware.templatesOnDemand = function (req, res, next) {
}, },
function (compiled, cb) { function (compiled, cb) {
if (!compiled) { if (!compiled) {
return cb(new Error('[[error:templatesOnDemand.compiled-template-empty]]')); return cb(new Error('[[error:templatesOnDemand.compiled-template-empty, ' + tplPath + ']]'));
} }
fs.writeFile(filePath, compiled, cb); fs.writeFile(filePath, compiled, cb);
}, },

Loading…
Cancel
Save