Fixing the ability to delete projects. Fixes #535

This commit is contained in:
Dan Cryer 2014-07-31 12:10:22 +01:00
parent 075550ace2
commit e10901bf1d

View file

@ -118,7 +118,7 @@ class ProjectController extends \PHPCI\Controller
}
$project = $this->projectStore->getById($projectId);
$this->projectService->delete($project);
$this->projectService->deleteProject($project);
header('Location: '.PHPCI_URL);
exit;