Explorar el Código

Merge pull request #938 from ArthurHoaro/hotfix/tagcloud-order

Sort tag cloud in alphabetical order
ArthurHoaro hace 6 años
padre
commit
de901736a6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      index.php

+ 1 - 1
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) {