Merge pull request #938 from ArthurHoaro/hotfix/tagcloud-order

Sort tag cloud in alphabetical order
This commit is contained in:
ArthurHoaro 2017-08-25 19:58:32 +02:00 committed by GitHub
commit de901736a6
1 changed files with 1 additions and 1 deletions

View File

@ -803,7 +803,7 @@ function renderPage($conf, $pluginManager, $LINKSDB, $history)
$maxcount = max($maxcount, $value);
}
alphabetical_sort($tags, true, true);
alphabetical_sort($tags, false, true);
$tagList = array();
foreach($tags as $key => $value) {