Fix wrong pageNo calculation in Exception search
authorTim Düsterhus <timwolla@googlemail.com>
Tue, 17 Dec 2013 15:20:26 +0000 (16:20 +0100)
committerTim Düsterhus <timwolla@googlemail.com>
Tue, 17 Dec 2013 15:20:26 +0000 (16:20 +0100)
wcfsetup/install/files/lib/acp/page/ExceptionLogViewPage.class.php

index 514bef7fe6ce97fbca9bccfdef487ef2cdabeb12..71800cf12078e1d6167a633bb36b0ed4eafdb891 100644 (file)
@@ -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;