Skip to content

Commit

Permalink
Fix codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
Tuan Pham Ngoc committed Oct 16, 2014
1 parent 7ea59b1 commit a1a39fe
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions administrator/modules/mod_login/helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,13 @@ public static function getLanguageList()
return '';
}

usort($languages, function ($a, $b)
{
return strcmp($a["value"], $b["value"]);
});
usort(
$languages,
function ($a, $b)
{
return strcmp($a["value"], $b["value"]);
}
);

array_unshift($languages, JHtml::_('select.option', '', JText::_('JDEFAULTLANGUAGE')));

Expand Down

0 comments on commit a1a39fe

Please sign in to comment.