From f32ec5fb3c2139546caec5d26bff3eb5b7d37255 Mon Sep 17 00:00:00 2001 From: ArthurHoaro Date: Fri, 25 Aug 2017 19:25:00 +0200 Subject: [PATCH] Sort tag cloud in alphabetical order Fixes #932 --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index b4c4347..76526bd 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) {