Merge pull request #938 from ArthurHoaro/hotfix/tagcloud-order
Sort tag cloud in alphabetical order
This commit is contained in:
commit
de901736a6
1 changed files with 1 additions and 1 deletions
|
@ -803,7 +803,7 @@ function renderPage($conf, $pluginManager, $LINKSDB, $history)
|
||||||
$maxcount = max($maxcount, $value);
|
$maxcount = max($maxcount, $value);
|
||||||
}
|
}
|
||||||
|
|
||||||
alphabetical_sort($tags, true, true);
|
alphabetical_sort($tags, false, true);
|
||||||
|
|
||||||
$tagList = array();
|
$tagList = array();
|
||||||
foreach($tags as $key => $value) {
|
foreach($tags as $key => $value) {
|
||||||
|
|
Loading…
Reference in a new issue