Skip to content

Commit

Permalink
allows for including icon- in call
Browse files Browse the repository at this point in the history
  • Loading branch information
N6REJ committed Aug 24, 2020
1 parent ec74c0c commit aef5cdd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/src/HTML/Helpers/JGrid.php
Expand Up @@ -96,7 +96,7 @@ public static function action($i, $task, $prefix = '', $active_title = '', $inac
}
elseif (strpos($active_class, 'icon-') !== false)
{
$active_class = 'icon-' . $active_class;
$active_class = $active_class;
}
elseif ($active_class === 'publish')
{
Expand Down Expand Up @@ -149,7 +149,7 @@ public static function action($i, $task, $prefix = '', $active_title = '', $inac
}
elseif (strpos($inactive_class, 'icon-') !== false)
{
$inactive_class = 'icon-' . $inactive_class;
$inactive_class = $inactive_class;
}
elseif ($inactive_class === 'publish')
{
Expand Down

0 comments on commit aef5cdd

Please sign in to comment.