Skip to content

Commit 9932c95

Browse files
committed
miner.php correct sort gen field names largest to smallest
1 parent d9449b2 commit 9932c95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

miner.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2385,7 +2385,7 @@ function ss($a, $b)
23852385
$la = strlen($a);
23862386
$lb = strlen($b);
23872387
if ($la != $lb)
2388-
return $la - $lb;
2388+
return $lb - $la;
23892389
return strcmp($a, $b);
23902390
}
23912391
#

0 commit comments

Comments
 (0)