aboutsummaryrefslogtreecommitdiffstats
path: root/include/taxonomy.php
diff options
context:
space:
mode:
authorStefan Parviainen <saparvia@caterva.eu>2014-10-16 21:37:14 +0200
committerStefan Parviainen <saparvia@caterva.eu>2014-10-16 21:37:14 +0200
commite425def2a2d81dc39e113a343eeab51764ce1163 (patch)
tree6535fba49d62e8ba504d73d4623616118ee3ec73 /include/taxonomy.php
parent6867a8a7f6060c82cba3a34cd944a3737e8e263e (diff)
parent865f804cfb86f12573ece550e1a7cf28172f6749 (diff)
downloadvolse-hubzilla-e425def2a2d81dc39e113a343eeab51764ce1163.tar.gz
volse-hubzilla-e425def2a2d81dc39e113a343eeab51764ce1163.tar.bz2
volse-hubzilla-e425def2a2d81dc39e113a343eeab51764ce1163.zip
Merge branch 'master' of https://github.com/pafcu/red
Diffstat (limited to 'include/taxonomy.php')
-rw-r--r--include/taxonomy.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/taxonomy.php b/include/taxonomy.php
index 92003328f..35605da22 100644
--- a/include/taxonomy.php
+++ b/include/taxonomy.php
@@ -154,7 +154,7 @@ function tagadelic($uid, $count = 0, $authors = '', $flags = 0, $restrict = 0, $
}
function tags_sort($a,$b) {
- if($a[0] == $b[0])
+ if(strtolower($a[0]) == strtolower($b[0]))
return 0;
return((strtolower($a[0]) < strtolower($b[0])) ? -1 : 1);
}