Redirect to project list when removing a project

This commit is contained in:
Frederic Guillot 2017-03-12 21:38:03 -04:00
parent 9b34631135
commit 6e4c40bafc
1 changed files with 1 additions and 1 deletions

View File

@ -95,6 +95,6 @@ class ProjectStatusController extends BaseController
$this->flash->failure(t('Unable to remove this project.'));
}
$this->response->redirect($this->helper->url->to('ProjectListController', 'show'), true);
$this->response->redirect($this->helper->url->to('ProjectListController', 'show'));
}
}