aboutsummaryrefslogtreecommitdiffstats
path: root/include/taxonomy.php
diff options
context:
space:
mode:
authormarijus <mario@mariovavti.com>2014-10-16 22:53:04 +0200
committermarijus <mario@mariovavti.com>2014-10-16 22:53:04 +0200
commitf290c4b1e4c13389bacfd736772ce40fe1961f08 (patch)
tree7b19690db045808e304a63e90ee1fbdffc101dac /include/taxonomy.php
parent1ee2b631db1afdec9672c72f6a27f99cfc853fd6 (diff)
parente1f88fd15d75f81af5017860b9f197771326c9b7 (diff)
downloadvolse-hubzilla-f290c4b1e4c13389bacfd736772ce40fe1961f08.tar.gz
volse-hubzilla-f290c4b1e4c13389bacfd736772ce40fe1961f08.tar.bz2
volse-hubzilla-f290c4b1e4c13389bacfd736772ce40fe1961f08.zip
Merge branch 'master' of https://github.com/friendica/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);
}