Skip to content

Commit

Permalink
Merge pull request #18 from zero-24/patch-2
Browse files Browse the repository at this point in the history
Some CS Fixes for joomla#9376
  • Loading branch information
alikon committed Mar 13, 2016
2 parents 28eeb62 + d3cc11c commit e5b4a6a
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions modules/mod_tags_popular/helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,18 @@ public static function getList(&$params)
$query->setLimit($maximum);
$query->order('count DESC');
$equery = $db->getQuery(true)
->select(
array(
'a.tag_id',
'a.count',
'a.title',
'a.access',
'a.alias')
->select(
array(
'a.tag_id',
'a.count',
'a.title',
'a.access',
'a.alias',
)
->from('(' . (string) $query . ') AS a')
->order('a.title' . ' ' . $order_direction);
)
->from('(' . (string) $query . ') AS a')
->order('a.title' . ' ' . $order_direction);

$query = $equery;
}
else
Expand Down

0 comments on commit e5b4a6a

Please sign in to comment.