Skip to content

Commit

Permalink
remove bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
brianteeman committed Sep 6, 2018
1 parent 50f5e81 commit 8687d7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layouts/joomla/searchtools/grid/sort.php
Expand Up @@ -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\"";
Expand Down

0 comments on commit 8687d7a

Please sign in to comment.