From 061d473cad0224f6cbafd504ed891cbff8cd6f83 Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Mon, 13 Nov 2017 11:42:08 +0100 Subject: [PATCH] Reversed history.timeline order (DESC) --- build/database/repo/history.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/database/repo/history.php b/build/database/repo/history.php index 0c3c480..8bf3fb1 100755 --- a/build/database/repo/history.php +++ b/build/database/repo/history.php @@ -116,7 +116,7 @@ ->join('id_action', $actions) ->select('id_history') ->select('timestamp') - ->orderby('timestamp', Rows::ORDER_ASC); + ->orderby('timestamp', Rows::ORDER_DESC); return $history->fetch(); }