#13430 fix directory bug

This commit is contained in:
Jonathan 2024-04-10 13:50:35 +02:00
parent f9bc334f18
commit ea6d10c456
1 changed files with 2 additions and 2 deletions

View File

@ -75,8 +75,8 @@ if (isset($text) === false) {
}
$directory = (string) get_parameter('directory');
$directory = str_replace('<', '', $text);
$directory = str_replace('>', '', $text);
$directory = str_replace('<', '', $directory);
$directory = str_replace('>', '', $directory);
if (empty($directory) === true) {
$directory = $fallback_directory;
} else {