diff --git a/Modules/LTIConsumer/classes/class.ilLTIConsumeProvider.php b/Modules/LTIConsumer/classes/class.ilLTIConsumeProvider.php index 881d6be4ae6d..477f6cd82bf9 100755 --- a/Modules/LTIConsumer/classes/class.ilLTIConsumeProvider.php +++ b/Modules/LTIConsumer/classes/class.ilLTIConsumeProvider.php @@ -807,7 +807,7 @@ public function assignFromDbRow(array $dbRow): void switch ($field) { case 'id': $this->setId((int) $value); break; - case 'title': $this->setTitle($value); + case 'title': $this->setTitle(htmlspecialchars($value)); break; case 'description': $this->setDescription($value); break;