There was an error while loading. Please reload this page.
1 parent cf0650b commit e7ebc1dCopy full SHA for e7ebc1d
main/course_info/about.php
@@ -13,8 +13,6 @@
13
* Show information about a course.
14
*
15
* @author Alex Aragon Calixto <alex.aragon@beeznest.com>
16
- *
17
- * @package chamilo.course
18
*/
19
$cidReset = true;
20
@@ -92,7 +90,7 @@
92
90
foreach ($courseDescriptionTools as $descriptionTool) {
93
91
switch ($descriptionTool->getDescriptionType()) {
94
case CCourseDescription::TYPE_DESCRIPTION:
95
- $courseDescription = $descriptionTool->getContent();
+ $courseDescription = Security::remove_XSS($descriptionTool->getContent());
96
break;
97
case CCourseDescription::TYPE_OBJECTIVES:
98
$courseObjectives = $descriptionTool;
0 commit comments