From ca9cd3606776c558e390adff56eff496115c2913 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Tue, 29 Oct 2013 14:51:58 -0400 Subject: [PATCH] fix for switching back to a theme without a custom template dir --- src/meta.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/meta.js b/src/meta.js index c2a1ee5cfa..6ee119e8c0 100644 --- a/src/meta.js +++ b/src/meta.js @@ -120,8 +120,8 @@ var utils = require('./../public/src/utils.js'), }); }, function(config, next) { - themeData['theme:staticDir'] = config.staticDir ? config.staticDir : false; - themeData['theme:templates'] = config.templates ? config.templates : false; + themeData['theme:staticDir'] = config.staticDir ? config.staticDir : ''; + themeData['theme:templates'] = config.templates ? config.templates : ''; RDB.hmset('config', themeData, next); }