From a8268adfb5c9ed1c20fba7aec1e175e27714c174 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 19 Aug 2016 16:45:54 +0200 Subject: [PATCH] fix enhanced (multi-)select boxes in old eTemplate where broken and displayed only as regular select-boxes --- api/src/Html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/Html.php b/api/src/Html.php index cc5fecea07..b3931d00f1 100644 --- a/api/src/Html.php +++ b/api/src/Html.php @@ -214,7 +214,7 @@ class Html if($enhanced) { Framework::includeJS('/api/js/jquery/chosen/chosen.jquery.js'); Framework::includeCSS('/api/js/jquery/chosen/chosen.css',null,false); - $out .= "\n"; + $out .= "\n"; } return $out; }