diff --git a/src/system/archive/listview.class.php b/src/system/archive/listview.class.php index 6f821a95..184ad2f8 100755 --- a/src/system/archive/listview.class.php +++ b/src/system/archive/listview.class.php @@ -430,7 +430,7 @@ class ListView } else if ($orderby == "scores") { $ordersql = " ORDER BY arc.scores $orderWay"; } else if ($orderby == "rand") { - $ordersql = " ORDER BY rand() DESC"; + $ordersql = " ORDER BY rand()"; } else { $ordersql = " ORDER BY arc.sortrank $orderWay"; } @@ -852,7 +852,7 @@ class ListView } else if ($orderby == "scores") { $ordersql = " ORDER BY arc.scores $orderWay"; } else if ($orderby == "rand") { - $ordersql = " ORDER BY rand() DESC"; + $ordersql = " ORDER BY rand()"; } else { $ordersql = " ORDER BY arc.sortrank $orderWay"; }