From 155844f14260a66ac5476155bb65c5e3035230c8 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 2 Mar 2017 23:02:44 -0800 Subject: reverse sort order --- include/text.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/text.php b/include/text.php index 1abed81bf..c68bd3591 100644 --- a/include/text.php +++ b/include/text.php @@ -857,7 +857,7 @@ function tag_sort_length($a,$b) { function total_sort($a,$b) { if($a['total'] == $b['total']) return 0; - return(($b['total'] < $a['total']) ? 1 : (-1)); + return(($b['total'] > $a['total']) ? 1 : (-1)); } -- cgit v1.2.3