diff options
author | friendica <info@friendica.com> | 2014-10-16 02:02:11 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-10-16 02:02:11 -0700 |
commit | e1f88fd15d75f81af5017860b9f197771326c9b7 (patch) | |
tree | 5484d212498eea4ab0e98e531dc06d5623cb8364 /include/taxonomy.php | |
parent | d4abc91d1ffad2784837e1446beef1223f98f19a (diff) | |
download | volse-hubzilla-e1f88fd15d75f81af5017860b9f197771326c9b7.tar.gz volse-hubzilla-e1f88fd15d75f81af5017860b9f197771326c9b7.tar.bz2 volse-hubzilla-e1f88fd15d75f81af5017860b9f197771326c9b7.zip |
jsonp support (thankxs fabrixxm)
Diffstat (limited to 'include/taxonomy.php')
-rw-r--r-- | include/taxonomy.php | 2 |
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); } |