From 24b12e23ea9c3841c2e6271b0155732e83f66732 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Sun, 8 Dec 2013 10:31:18 -0500 Subject: [PATCH] fixes #636, conditionals broken from f1ad4698613d59bc2648b359accd6c6e196434cc --- public/src/templates.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/templates.js b/public/src/templates.js index 2516efb342..6a3f13a99e 100644 --- a/public/src/templates.js +++ b/public/src/templates.js @@ -355,7 +355,7 @@ } // clean up all undefined conditionals - template = template.replace(//gi, ''); + template = template.replace(//gi, ''); return template;