Skip to content
Snippets Groups Projects
Commit 7173f104 authored by Tim Steiner's avatar Tim Steiner
Browse files

Fix diff view mistakenly reporting that ES has been dropped from a course

parent be48025b
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ class Application_View_Helper_BulletinEntryDiff
// ES and IS
$currentES = ($currentCourse->isEssentialStudies() == true ? '[ES]' : '');
$proposedES = ($proposedCourse->isEssentialStudies() == true ? '[ES]' : '');
$diffES = $this->_getDiffText($currentES, $proposedIS);
$diffES = $this->_getDiffText($currentES, $proposedES);
$currentIS = ($currentCourse->integratedStudies == 'yes' ? '[IS]' : '');
$proposedIS = ($proposedCourse->integratedStudies == 'yes' ? '[IS]' : '');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment