From 6531f7058196567fd4bca56088b1fae0b24da77a Mon Sep 17 00:00:00 2001 From: Dmitry Khomutov Date: Mon, 9 May 2016 13:55:22 +0600 Subject: [PATCH] Fixes --- src/PHPCI/Controller/BuildController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PHPCI/Controller/BuildController.php b/src/PHPCI/Controller/BuildController.php index f0c22144..a2536141 100644 --- a/src/PHPCI/Controller/BuildController.php +++ b/src/PHPCI/Controller/BuildController.php @@ -175,7 +175,7 @@ class BuildController extends Controller /** @var \PHPCI\Store\BuildErrorStore $errorStore */ $errorStore = b8\Store\Factory::getStore('BuildError'); - $errors = $errorStore->getErrorsForBuild($build->getId(), $this->getParam('since', null)); + $errors = $errorStore->getErrorsForBuild($build->getId()); $errorView = new b8\View('Build/errors'); $errorView->build = $build;