diff --git a/application/modules/courses/controllers/EditController.php b/application/modules/courses/controllers/EditController.php
index 313526362b77a85d17a54c8833d5220c59abd36c..43a0c2aebe272a9ee9691dcbbee8ada39d4818df 100644
--- a/application/modules/courses/controllers/EditController.php
+++ b/application/modules/courses/controllers/EditController.php
@@ -35,7 +35,7 @@ class Courses_EditController extends App_Controller_Action
         
         $errors = array();
 
-        if (!in_array($request->getType(), array('RemoveCourse', 'AddACEToCourse', 'RemoveACEFromCourse'))) {
+        if (!in_array($request->getType(), array('RemoveCourse', 'AddACEToCourse', 'RemoveACEFromCourse', 'ChangeACE'))) {
             $course->setCourseCode($in->subject, $in->courseNumber, $in->courseLetter);
 	        $course->setTitle($in->title);
 	        if (Unl_Util::isArray($in->crosslistings)) {
@@ -97,7 +97,7 @@ class Courses_EditController extends App_Controller_Action
 	        }
         }
 
-        if (in_array($request->getType(), array('NewCourseWithACE', 'AddACEToCourse', 'AddACEAndChangeCourse'))) {
+        if (in_array($request->getType(), array('NewCourseWithACE', 'AddACEToCourse', 'AddACEAndChangeCourse', 'ChangeACE'))) {
         	foreach ($rawIn['ace']['outcomes'] as $name => $aceOutcome) {
         		if ($aceOutcome['enabled']) {
         			$course->setAceOutcome($name, $aceOutcome['justification'], $aceOutcome['studentWork'], $aceOutcome['assesmentPlan']);
diff --git a/application/modules/courses/views/scripts/new/found.phtml b/application/modules/courses/views/scripts/new/found.phtml
index cb9cbad3843f002c4c975bb2d1b1970971fbaf41..8ba7be1b70244c186fa1f3eb83b1a6e413d9460f 100644
--- a/application/modules/courses/views/scripts/new/found.phtml
+++ b/application/modules/courses/views/scripts/new/found.phtml
@@ -59,6 +59,15 @@
         </a>
     </li>
     <?php } else if ($this->isAce) { ?>
+    <li>
+        <a href="<?php echo $this->url(array('action'       => 'create',
+                                             'type'         => 'ChangeACE',
+                                             'subject'      => $this->subject,
+                                             'courseNumber' => $this->courseNumber,
+                                             'courseLetter' => $this->courseLetter)); ?>">
+            <b>Update</b> to the <b>ACE Certification</b> for this course
+        </a>
+    </li>
     <li>
         <a href="<?php echo $this->url(array('action'       => 'create',
                                              'type'         => 'RemoveACEFromCourse',
diff --git a/application/modules/courses/views/scripts/view/course-info.phtml b/application/modules/courses/views/scripts/view/course-info.phtml
index 0d89bc80f5ba04a4c1c5f784770ee7b2b26191c2..106bfe4815641ddd96b93fcbcd790fe67e1f4325 100644
--- a/application/modules/courses/views/scripts/view/course-info.phtml
+++ b/application/modules/courses/views/scripts/view/course-info.phtml
@@ -37,7 +37,81 @@
 
 
 /*****************************ACE COURSE***************************************/
-    if (in_array($this->request->getType(), array('NewCourseWithACE', 'AddACEToCourse', 'AddACEAndChangeCourse'))) {
+    if (in_array($this->request->getType(), array('ChangeACE'))) {
+?>
+<div>
+    <h2 id="aceHeading">Previous Ace Course Proposal</h2>
+
+    <h3>Outcome(s)</h3>
+    <?php foreach ($this->parentCourse->getAceOutcomes() as $aceOutcome) { ?>
+    <div class="sloHeading">
+        <?php echo $aceOutcome['slo']; ?>:
+        <?php echo $aceOutcome['description']; ?>
+    </div>
+    <ol>
+        <li>
+            <div class="question">
+                Describe opportunities students should have to learn the outcome.<br />
+                How is the learning objective embedded in the course?
+            </div>
+            <div class="answer">
+                <?php echo $aceOutcome['justification']; ?>
+            </div>
+        </li>
+        <li>
+            <div class="question">
+                Describe student work that will be used to assess student achievement
+                of the outcome and explain how the students demonstrate the knowledge
+                and skills specified by the outcome.
+            </div>
+            <div class="answer">
+                <?php echo $aceOutcome['studentWork']; ?>
+            </div>
+        </li>
+        <li>
+            <div class="question">
+                As part of the ACE certification process, the department/unit agrees to
+                collect and assess a reasonable sample of students' work and provide
+                reflections on students' achievement of the Learning Outcomes for its
+                respective ACE-certified courses.<br />
+                Please comment on your plans to develop a process to collect and evaluate
+                student work over time for the purpose of assessing student success for
+                this ACE outcome.
+            </div>
+            <div class="answer">
+                <?php echo $aceOutcome['assesmentPlan']; ?>
+            </div>
+        </li>
+    </ol>
+    <?php } ?>
+    
+    <h3>Reinforcements</h3>
+    
+    <div id="reinforcementDescription">
+        According to the ACE document approved by faculty (Structural Criteria,
+        item 9), "Every ACE course will reinforce at least one of the following
+        skills listed below as appropriate for the discipline and as identified
+        by the department offering the course..." Indicate skills that will be reinforced
+        by the course by clicking on as many as apply and describe briefly how those
+        skills will be reinforced.<br /><br />
+
+        <b>These areas are those <em>OTHER THAN</em> the one or two outcomes for
+        which you seek ACE certification. Students will not receive ACE credit for
+        the reinforced skills, and the reinforced skills do not need to be assessed
+        for ACE purposes.</b>
+    </div>
+    
+    <div id="reinforcementQuestion"> What Outcome(s) or skill(s) will be reinforced in this course?</div> 
+    
+    <dl>
+        <?php foreach ($this->parentCourse->getAceReinforcements() as $aceReinforcement) { ?>
+        <dt><?php echo $aceReinforcement['longName']; ?></dt>
+        <dd><?php echo $aceReinforcement['description']; ?></dd>
+        <?php } ?>
+    </dl>
+</div>
+<?php }
+    if (in_array($this->request->getType(), array('NewCourseWithACE', 'AddACEToCourse', 'AddACEAndChangeCourse', 'ChangeACE'))) {
 ?>
 <div>
     <h2 id="aceHeading">Ace Course Proposal</h2>