summaryrefslogtreecommitdiff
path: root/include/controls.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/controls.php')
-rwxr-xr-xinclude/controls.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/controls.php b/include/controls.php
index b65a166c2..a1a1bc59b 100755
--- a/include/controls.php
+++ b/include/controls.php
@@ -2,7 +2,7 @@
namespace Controls;
function attributes_to_string(array $attributes) {
- $rv = "";
+ $rv = [];
foreach ($attributes as $k => $v) {
@@ -10,10 +10,10 @@
if ($k === "disabled" && !sql_bool_to_bool($v))
continue;
- $rv .= "$k=\"" . htmlspecialchars($v) . "\"";
+ array_push($rv, "$k=\"" . htmlspecialchars($v) . "\"");
}
- return $rv;
+ return implode(" ", $rv);
}
// shortcut syntax (disabled)