From b4a88e65528b9e1d56409e923872aadc4278b29f Mon Sep 17 00:00:00 2001 From: Nick Barry <nbarry@unl.edu> Date: Thu, 14 Aug 2014 11:27:58 -0500 Subject: [PATCH] Updated text for course recertifiation --- application/modules/courses/models/CourseModel.php | 1 + application/modules/courses/views/scripts/edit/index.phtml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/application/modules/courses/models/CourseModel.php b/application/modules/courses/models/CourseModel.php index 3bbb8f5b..ff90d9a6 100644 --- a/application/modules/courses/models/CourseModel.php +++ b/application/modules/courses/models/CourseModel.php @@ -138,6 +138,7 @@ class Courses_CourseModel extends Unl_Model // for each AceRecertification record, get the questions and answers //SELECT q.*, a.* FROM creq.creqCourseAceRecertifyAnswers AS a //INNER JOIN creq.creqCourseAceRecertifyQuestions AS q ON a.questionId = q.courseAceRecertifyQuestionId + //INNER JOIN creq.creqCourseAceRecertifyQuestionSets AS s ON q.questionSetId = s.courseAceRecertifyQuestionSetId //WHERE a.recertificationId = 785 ORDER BY q.questionSort; $select = new Zend_Db_Select($db); $select->from(array('a' => 'creqCourseAceRecertifyAnswers')); diff --git a/application/modules/courses/views/scripts/edit/index.phtml b/application/modules/courses/views/scripts/edit/index.phtml index 1c732afd..2bc11ec2 100644 --- a/application/modules/courses/views/scripts/edit/index.phtml +++ b/application/modules/courses/views/scripts/edit/index.phtml @@ -1171,7 +1171,7 @@ if (in_array($this->request->getType(), array('NewCourseWithACE', 'AddACEToCours <label for="ace-recertify-blackboardUpload" class="required"> By checking this box, as the submitter of this course for ACE Recertification, you agree to upload the electronic student work samples into the Blackboard - Content Collection folder. + Content Collection folder (if requested by the ACE committee). <?php $blackboardUpload = $this->course->getAceRecertificationBlackboardUpload(); echo $this->formCheckbox('ace[blackboardUpload]', $blackboardUpload, NULL, array('yes', 'no')); -- GitLab