Added description, removed sorting

This commit is contained in:
Michael 2019-11-07 07:41:54 +00:00
parent 91ad7936f3
commit 806e6a230e
2 changed files with 9 additions and 6 deletions

View file

@ -1541,12 +1541,6 @@ function sort_thr_received_rev(array $a, array $b)
*/
function sort_thr_commented(array $a, array $b)
{
if ($b['pinned'] && !$a['pinned']) {
return 1;
} elseif (!$b['pinned'] && $a['pinned']) {
return -1;
}
return strcmp($b['commented'], $a['commented']);
}