includes/clientside/static/template-compiler.js
changeset 1311 a228f7e8fb15
parent 1291 a971f6efcb7b
--- a/includes/clientside/static/template-compiler.js	Mon Nov 15 16:58:05 2010 -0500
+++ b/includes/clientside/static/template-compiler.js	Mon Nov 15 19:21:40 2010 -0500
@@ -4,8 +4,8 @@
 window.templateParser = function(text)
 {
 	this.tpl_code    = text;
-	this.tpl_strings = new Object();
-	this.tpl_bool    = new Object();
+	this.tpl_strings = {};
+	this.tpl_bool    = {};
 	this.assign_vars = __tpAssignVars;
 	this.assign_bool = __tpAssignBool;
 	this.fetch_hook  = __tpFetchHook;