From bdb13805a67c4d22fc2b0e539b63c917844de979 Mon Sep 17 00:00:00 2001 From: Olle Haerstedt Date: Mon, 5 Mar 2018 12:36:55 +0100 Subject: [PATCH] Dev: Indentation --- application/controllers/admin/assessments.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/application/controllers/admin/assessments.php b/application/controllers/admin/assessments.php index 23e8d89289f..601eb2f169c 100644 --- a/application/controllers/admin/assessments.php +++ b/application/controllers/admin/assessments.php @@ -48,26 +48,25 @@ public function index($iSurveyID) Yii::app()->setConfig("assessmentlangs", $languages); if ($sAction == "assessmentadd") { - $this->_add($iSurveyID); + $this->_add($iSurveyID); } if ($sAction == "assessmentupdate") { - $this->_update($iSurveyID); + $this->_update($iSurveyID); } if ($sAction == "assessmentopenedit") { - $this->_edit($iSurveyID); + $this->_edit($iSurveyID); } if ($sAction == "assessmentdelete") { - $this->_delete($iSurveyID, $_POST['id']); + $this->_delete($iSurveyID, $_POST['id']); } if ($sAction == "asessementactivate") { - $this->_activateAsessement($iSurveyID); + $this->_activateAsessement($iSurveyID); } - $this->_showAssessments($iSurveyID, $sAction); } else { Yii::app()->setFlashMessage(gT("You do not have permission to access this page."), 'error');