From: ArthurHoaro Date: Fri, 25 Aug 2017 17:25:00 +0000 (+0200) Subject: Sort tag cloud in alphabetical order X-Git-Tag: v0.9.4~7^2~14^2 X-Git-Url: https://git.immae.eu/?p=github%2Fshaarli%2FShaarli.git;a=commitdiff_plain;h=f32ec5fb3c2139546caec5d26bff3eb5b7d37255 Sort tag cloud in alphabetical order Fixes #932 --- 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) $maxcount = max($maxcount, $value); } - alphabetical_sort($tags, true, true); + alphabetical_sort($tags, false, true); $tagList = array(); foreach($tags as $key => $value) {