From 1fc6d69e2e25d6e4feaa38fe03dab98c75cfb36c Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sun, 25 Jan 2015 18:08:28 -0500 Subject: Fix bug duplicate project with a too long name --- app/Controller/Project.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Controller/Project.php') diff --git a/app/Controller/Project.php b/app/Controller/Project.php index a53c917c..4beb19ce 100644 --- a/app/Controller/Project.php +++ b/app/Controller/Project.php @@ -307,7 +307,7 @@ class Project extends Base $this->checkCSRFParam(); - if ($this->project->duplicate($project['id'])) { + if ($this->projectDuplication->duplicate($project['id'])) { $this->session->flash(t('Project cloned successfully.')); } else { $this->session->flashError(t('Unable to clone this project.')); -- cgit v1.2.3