Added exit to correct redirect after Build Now is clicked

Withow `exit` statement it's not redirected to new created build.
This commit is contained in:
Maks Rafalko 2013-07-15 23:28:22 +03:00
parent b767da324a
commit 34bb69ec5e

View file

@ -63,6 +63,7 @@ class ProjectController extends \PHPCI\Controller
$build = $this->_buildStore->save($build);
header('Location: '.PHPCI_URL.'build/view/' . $build->getId());
exit;
}
/**