From bc1df781203c0b742c059ec14bc58aa0bd80a7c2 Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Sun, 12 Nov 2017 14:53:06 +0100 Subject: [PATCH] History details.timeline ASC order (not reverse as history.view) --- 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 8bf3fb1..0c3c480 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_DESC); + ->orderby('timestamp', Rows::ORDER_ASC); return $history->fetch(); }