diff --git a/adminer/select.inc.php b/adminer/select.inc.php
index 46f53605..166c0006 100644
--- a/adminer/select.inc.php
+++ b/adminer/select.inc.php
@@ -354,7 +354,7 @@ if (!$columns && support("table")) {
echo "
" . script("mixin(qsl('th'), {onmouseover: partial(columnMouse), onmouseout: partial(columnMouse, ' hidden')});", "");
$fun = apply_sql_function($val["fun"], $name); //! columns looking like functions
$sortable = isset($field["privileges"]["order"]) || $fun;
- echo ($sortable ? '' . "$fun" : $fun); // $order[0] == $key - COUNT(*)
+ echo ($sortable ? "$fun" : $fun); // $order[0] == $key - COUNT(*)
echo "";
if ($sortable) {
echo " ↓";
|