Skip to content

Commit

Permalink
Update class.ilCourseXMLParser.php : follow ups to the addition of th…
Browse files Browse the repository at this point in the history
…e element

we can now include these elements in our XML
  • Loading branch information
waddahadel authored May 14, 2024
1 parent 3d25166 commit 1e53b39
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Modules/Course/classes/class.ilCourseXMLParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -678,6 +678,9 @@ public function handlerEndTag($a_xml_parser, $a_name)
case 'MailToMembersType':
$this->course_obj->setMailToMembersType((int) $this->cdata);
break;
case 'AboStatus':
$this->course_obj->setAboStatus((int) $this->cdata);
break;
}
$this->cdata = '';

Expand Down

0 comments on commit 1e53b39

Please sign in to comment.