diff --git a/typo3/sysext/scheduler/Classes/Task/ExecuteSchedulableCommandAdditionalFieldProvider.php b/typo3/sysext/scheduler/Classes/Task/ExecuteSchedulableCommandAdditionalFieldProvider.php index 5f5f00eb28e7a4110db176c2087f0c6e870fe726..b211b8fade151b0d76a01322ac10a11f1a35373b 100644 --- a/typo3/sysext/scheduler/Classes/Task/ExecuteSchedulableCommandAdditionalFieldProvider.php +++ b/typo3/sysext/scheduler/Classes/Task/ExecuteSchedulableCommandAdditionalFieldProvider.php @@ -313,7 +313,7 @@ class ExecuteSchedulableCommandAdditionalFieldProvider implements AdditionalFiel */ protected function getArgumentLabel(InputArgument $argument): string { - return 'Argument: ' . $argument->getName() . '. ' . htmlspecialchars($argument->getDescription()); + return 'Argument: ' . $argument->getName() . '. ' . $argument->getDescription(); } /** @@ -321,7 +321,7 @@ class ExecuteSchedulableCommandAdditionalFieldProvider implements AdditionalFiel */ protected function getOptionLabel(InputOption $option): string { - return 'Option: ' . htmlspecialchars($option->getName()) . '. ' . htmlspecialchars($option->getDescription()); + return 'Option: ' . $option->getName() . '. ' . $option->getDescription(); } protected function renderSelectField(array $options, string $selectedOptionValue): string