diff options
author | ArthurHoaro <arthur@hoa.ro> | 2017-08-25 19:25:00 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2017-08-25 19:25:09 +0200 |
commit | f32ec5fb3c2139546caec5d26bff3eb5b7d37255 (patch) | |
tree | 047f6ae2d6d7ab88d3e019e8644dd75d91572fe8 /index.php | |
parent | 2a1292359b79ec77257583ea9d97891dfd2ddb1b (diff) | |
download | Shaarli-f32ec5fb3c2139546caec5d26bff3eb5b7d37255.tar.gz Shaarli-f32ec5fb3c2139546caec5d26bff3eb5b7d37255.tar.zst Shaarli-f32ec5fb3c2139546caec5d26bff3eb5b7d37255.zip |
Sort tag cloud in alphabetical order
Fixes #932
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -803,7 +803,7 @@ function renderPage($conf, $pluginManager, $LINKSDB, $history) | |||
803 | $maxcount = max($maxcount, $value); | 803 | $maxcount = max($maxcount, $value); |
804 | } | 804 | } |
805 | 805 | ||
806 | alphabetical_sort($tags, true, true); | 806 | alphabetical_sort($tags, false, true); |
807 | 807 | ||
808 | $tagList = array(); | 808 | $tagList = array(); |
809 | foreach($tags as $key => $value) { | 809 | foreach($tags as $key => $value) { |