diff options
Diffstat (limited to 'app/Controller')
-rw-r--r-- | app/Controller/ProjectEdit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/ProjectEdit.php b/app/Controller/ProjectEdit.php index f4a3a7cb..94be0206 100644 --- a/app/Controller/ProjectEdit.php +++ b/app/Controller/ProjectEdit.php @@ -67,7 +67,7 @@ class ProjectEdit extends Base if ($valid) { if ($this->project->update($values)) { $this->flash->success(t('Project updated successfully.')); - $this->response->redirect($this->helper->url->to('ProjectEdit', $redirect, array('project_id' => $project['id']))); + $this->response->redirect($this->helper->url->to('ProjectEdit', $redirect, array('project_id' => $project['id'])), true); } else { $this->flash->failure(t('Unable to update this project.')); } |