diff -r 41ac3758ba79 -r a228f7e8fb15 includes/clientside/static/template-compiler.js --- 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;