From 3f35003ac927fed3e042413459de290753f9b261 Mon Sep 17 00:00:00 2001 From: rolux Date: Tue, 22 May 2012 17:41:01 +0200 Subject: [PATCH] fix Ox.encodeHTML --- source/Ox/js/Encoding.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Ox/js/Encoding.js b/source/Ox/js/Encoding.js index 55e7a4ef..276894c5 100644 --- a/source/Ox/js/Encoding.js +++ b/source/Ox/js/Encoding.js @@ -282,7 +282,7 @@ return code < 128 ? (v in Ox.HTML_ENTITIES ? Ox.HTML_ENTITIES[v] : v) : '&#x' + Ox.pad(code.toString(16).toUpperCase(), 4) + ';'; - }).join(''); + }); }; /*@