From 53ce824edaa8a3b3529515d2c3caff455ed3ef7c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Tue, 17 Dec 2013 16:20:26 +0100 Subject: [PATCH] Fix wrong pageNo calculation in Exception search --- .../install/files/lib/acp/page/ExceptionLogViewPage.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/acp/page/ExceptionLogViewPage.class.php b/wcfsetup/install/files/lib/acp/page/ExceptionLogViewPage.class.php index 514bef7fe6..71800cf120 100644 --- a/wcfsetup/install/files/lib/acp/page/ExceptionLogViewPage.class.php +++ b/wcfsetup/install/files/lib/acp/page/ExceptionLogViewPage.class.php @@ -174,7 +174,7 @@ Stacktrace: * @param string $exceptionID */ public function searchPage($exceptionID) { - $i = 0; + $i = 1; foreach ($this->exceptions as $key => $val) { if ($key == $exceptionID) break; -- 2.20.1