diff --git a/src/Backend/Modules/Extensions/Engine/Model.php b/src/Backend/Modules/Extensions/Engine/Model.php index 4e09814e26..3d81361271 100644 --- a/src/Backend/Modules/Extensions/Engine/Model.php +++ b/src/Backend/Modules/Extensions/Engine/Model.php @@ -839,7 +839,7 @@ public static function processModuleXml(\SimpleXMLElement $xml): array $information['name'] = (string) $module->name; $information['version'] = (string) $module->version; $information['requirements'] = (array) $module->requirements; - $information['description'] = (string) $module->description; + $information['description'] = strip_tags((string) $module->description, '

  • '); $information['cronjobs'] = []; // authors @@ -900,7 +900,7 @@ public static function processThemeXml(\SimpleXMLElement $xml): array $information['version'] = (string) $theme->version; $information['requirements'] = (array) $theme->requirements; $information['thumbnail'] = (string) $theme->thumbnail; - $information['description'] = (string) $theme->description; + $information['description'] = strip_tags((string) $theme->description, '

  • '); // authors foreach ($xml->xpath('/theme/authors/author') as $author) {