From fd4131497b77a8ef274a93e951e66a187823b5f9 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Fri, 20 Aug 2021 09:42:27 +0200 Subject: [PATCH] escape special chars in missing translation form --- views/bootstrap/class.Bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/bootstrap/class.Bootstrap.php b/views/bootstrap/class.Bootstrap.php index 849faef0a..f5cc53db3 100644 --- a/views/bootstrap/class.Bootstrap.php +++ b/views/bootstrap/class.Bootstrap.php @@ -245,7 +245,7 @@ background-image: linear-gradient(to bottom, #882222, #111111);; echo ""; echo "\n"; foreach($MISSING_LANG as $key=>$lang) { - echo ""; + echo ""; } echo "
Keyengl. TextYour translation
".$key."".(isset($LANG['en_GB'][$key]) ? $LANG['en_GB'][$key] : '')."
".htmlspecialchars($key)."".(isset($LANG['en_GB'][$key]) ? $LANG['en_GB'][$key] : '')."
"; echo "
There are missing translations on this page!
Please check the bottom of the page.
\n";