]> git.immae.eu Git - github/shaarli/Shaarli.git/commitdiff
Sort tag cloud in alphabetical order 938/head
authorArthurHoaro <arthur@hoa.ro>
Fri, 25 Aug 2017 17:25:00 +0000 (19:25 +0200)
committerArthurHoaro <arthur@hoa.ro>
Fri, 25 Aug 2017 17:25:09 +0000 (19:25 +0200)
Fixes #932

index.php

index b4c4347a40c46addc904079ae31f36b6b08da707..76526bd54717efeaf2d56eed8f83ed6a6970e67d 100644 (file)
--- 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) {