plugin templates now have higher priority than theme templates

v1.18.x
psychobunny 11 years ago
parent 85aa88e6ed
commit c97d6635fc

@ -73,7 +73,7 @@ function compileTemplates(pluginTemplates) {
utils.walk(baseTemplatesPath, function(err, baseTpls) {
utils.walk(themeTemplatesPath, function (err, themeTpls) {
var paths = pluginTemplates;
var paths = {};
if (!baseTpls || !themeTpls) {
winston.warn('[themes] Could not find base template files at: ' + baseTemplatesPath);
@ -90,6 +90,12 @@ function compileTemplates(pluginTemplates) {
paths[themeTpls[i]] = path.join(themeTemplatesPath, themeTpls[i]);
});
for (var tpl in pluginTemplates) {
if (pluginTemplates.hasOwnProperty(tpl)) {
paths[tpl] = pluginTemplates[tpl];
}
}
async.each(Object.keys(paths), function(relativePath, next) {
var file = fs.readFileSync(paths[relativePath]).toString(),
matches = null,

Loading…
Cancel
Save