From 8687d7ab8d491907210e515e871a8b88ab072109 Mon Sep 17 00:00:00 2001 From: Brian Teeman Date: Thu, 6 Sep 2018 13:12:41 +0100 Subject: [PATCH] remove bracket --- layouts/joomla/searchtools/grid/sort.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/joomla/searchtools/grid/sort.php b/layouts/joomla/searchtools/grid/sort.php index c9a3821b07ce4..a92945b7194a3 100644 --- a/layouts/joomla/searchtools/grid/sort.php +++ b/layouts/joomla/searchtools/grid/sort.php @@ -21,7 +21,7 @@ if ($data->order === $data->selected) : $icon = $data->orderIcon; - $sort = ($data->direction === "asc" ? "ascending" : "descending"); + $sort = $data->direction === "asc" ? "ascending" : "descending"; $caption = !empty($data->title) ? Text::_($data->title) . ' - ' . $sort : ''; $selected = " selected"; $id = "id=\"sorted\"";