# HG changeset patch # User Dan # Date 1265666648 18000 # Node ID fbfd6c852c89e4a4e6b828d2b2361963d91cf5fc # Parent 2b13cd6b4f95717b5ff3e84739a318459c9fe51d Fixed unescaped ampersands in "&enano_version" cache breaking diff -r 2b13cd6b4f95 -r fbfd6c852c89 includes/template.php --- a/includes/template.php Sun Feb 07 17:07:42 2010 -0500 +++ b/includes/template.php Mon Feb 08 17:04:08 2010 -0500 @@ -581,7 +581,7 @@ // point to jsres compressor $js_head .= << - + JSEOF; $js_foot = ''; @@ -596,10 +596,10 @@ { // special case for l10n: also load strings global $lang; - $js_foot .= "\n "; + $js_foot .= "\n "; } $scripts = implode(',', $this->js_preload); - $js_foot .= "\n "; + $js_foot .= "\n "; }