diff --git a/Theme/Backend/wiki-category-list.tpl.php b/Theme/Backend/wiki-category-list.tpl.php
index 15334e6..98eea5d 100644
--- a/Theme/Backend/wiki-category-list.tpl.php
+++ b/Theme/Backend/wiki-category-list.tpl.php
@@ -25,22 +25,22 @@ echo $this->getData('nav')->render();
- = $this->getText('Groups'); ?>
+ = $this->getHtml('Groups') ?>
- | = $this->getText('ID', 0, 0); ?>
- | = $this->getText('Name'); ?>
+ | = $this->getHtml('ID', 0, 0); ?>
+ | = $this->getHtml('Name') ?>
|
|
|
$value) : $c++;
$url = \phpOMS\Uri\UriFactory::build('{/base}/{/lang}/backend/admin/account/settings?{?}&id=' . $value->getId()); ?>
- | = $value->getId(); ?>
- | = $value->getName(); ?>
+ | = htmlspecialchars($value->getId(), ENT_COMPAT, 'utf-8'); ?>
+ | = htmlspecialchars($value->getName(), ENT_COMPAT, 'utf-8'); ?>
- |
| = $this->getText('Empty', 0, 0); ?>
+ |
| = $this->getHtml('Empty', 0, 0); ?>
|
diff --git a/Theme/Backend/wiki-dashboard.tpl.php b/Theme/Backend/wiki-dashboard.tpl.php
index dc036c3..c5e2372 100644
--- a/Theme/Backend/wiki-dashboard.tpl.php
+++ b/Theme/Backend/wiki-dashboard.tpl.php
@@ -7,7 +7,7 @@ echo $this->getData('nav')->render(); ?>
diff --git a/Theme/Backend/wiki-doc.tpl.php b/Theme/Backend/wiki-doc.tpl.php
index 33de315..adfac8b 100644
--- a/Theme/Backend/wiki-doc.tpl.php
+++ b/Theme/Backend/wiki-doc.tpl.php
@@ -11,10 +11,10 @@ echo $this->getData('nav')->render();
-
+ = htmlspecialchars($doc->getTitle(), ENT_COMPAT, 'utf-8'); ?>
- = $doc->getDoc(); ?>
+ = htmlspecialchars($doc->getDoc(), ENT_COMPAT, 'utf-8'); ?>