diff options
| author | Finn Schneider <schneider@data-quest.de> | 2026-03-19 14:03:21 +0100 |
|---|---|---|
| committer | Finn Schneider <schneider@data-quest.de> | 2026-03-19 14:03:21 +0100 |
| commit | 96e5a86a214bad7cf50f2e5a987b5d852341af5f (patch) | |
| tree | 3b31651f4d3e2cbd0b12968c233bbfccba257a32 /app/controllers/course | |
| parent | 5893a1183af02564a31de80a051e218f30a04090 (diff) | |
fix eval_assign remove start/stopdate
Diffstat (limited to 'app/controllers/course')
| -rw-r--r-- | app/controllers/course/evaluation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/course/evaluation.php b/app/controllers/course/evaluation.php index dd3043f..7f7d301 100644 --- a/app/controllers/course/evaluation.php +++ b/app/controllers/course/evaluation.php @@ -7,7 +7,7 @@ class Course_EvaluationController extends AuthenticatedController $this->evaluations = Questionnaire::findBySQL( "INNER JOIN `questionnaire_eval_assignments` USING(`questionnaire_id`) WHERE `course_id` = ? AND `applied` = 1 - ORDER BY `questionnaire_eval_assignments`.`startdate` DESC", + ORDER BY `questionnaires`.`startdate` DESC", [Context::getId()]); $this->render_template('course/evaluation/index', $this->layout); } |
