From: Matthias Schmidt Date: Sat, 9 Feb 2019 10:06:19 +0000 (+0100) Subject: Show latest exceptions first on exception log page X-Git-Tag: 5.2.0_Alpha_1~301 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=ba3e3b615f5210c280575ed72c0230529f78ae86;p=GitHub%2FWoltLab%2FWCF.git Show latest exceptions first on exception log page See #2831 --- diff --git a/wcfsetup/install/files/lib/acp/page/ExceptionLogViewPage.class.php b/wcfsetup/install/files/lib/acp/page/ExceptionLogViewPage.class.php index 48f880a46d..74848a5ca8 100644 --- a/wcfsetup/install/files/lib/acp/page/ExceptionLogViewPage.class.php +++ b/wcfsetup/install/files/lib/acp/page/ExceptionLogViewPage.class.php @@ -196,6 +196,9 @@ class ExceptionLogViewPage extends MultipleLinkPage { $matches['chain'] = $chainMatches; $this->exceptions[$key] = $matches; } + + // show latest exceptions first + $this->exceptions = array_reverse($this->exceptions, true); } /**