aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-08-25 19:58:32 +0200
committerGitHub <noreply@github.com>2017-08-25 19:58:32 +0200
commitde901736a663934c1b67f09f1d586da665f0f036 (patch)
treef955d372982c6fa3be70b179c096e44592d9b55d
parentc4ac70acbbaa0031607005f7e867f474ec479a8c (diff)
parentf32ec5fb3c2139546caec5d26bff3eb5b7d37255 (diff)
downloadShaarli-de901736a663934c1b67f09f1d586da665f0f036.tar.gz
Shaarli-de901736a663934c1b67f09f1d586da665f0f036.tar.zst
Shaarli-de901736a663934c1b67f09f1d586da665f0f036.zip
Merge pull request #938 from ArthurHoaro/hotfix/tagcloud-order
Sort tag cloud in alphabetical order
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index b4c4347a..76526bd5 100644
--- a/index.php
+++ b/index.php
@@ -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) {