diff --git a/Theme/Backend/mid-side.tpl.php b/Theme/Backend/mid-side.tpl.php index f7a302b..a7f78a6 100644 --- a/Theme/Backend/mid-side.tpl.php +++ b/Theme/Backend/mid-side.tpl.php @@ -19,7 +19,7 @@ /* Looping through all links */ if (isset($this->nav[\Modules\Navigation\Models\NavigationType::CONTENT_SIDE])) { echo '
' - . '

' . $this->getText('Navigation') + . '

' . $this->getHtml('Navigation') . '' . '

' . '
' @@ -30,7 +30,7 @@ if (isset($this->nav[\Modules\Navigation\Models\NavigationType::CONTENT_SIDE])) /** @var array $data */ if ($link['nav_parent'] == $data[1]) { echo '
  • ' - . $this->getText(5, 'Backend', $link['nav_name']) . ''; + . $this->getHtml(5, 'Backend', $link['nav_name']) . ''; } } } diff --git a/Theme/Backend/mid.tpl.php b/Theme/Backend/mid.tpl.php index 50d45ac..1bb3c05 100644 --- a/Theme/Backend/mid.tpl.php +++ b/Theme/Backend/mid.tpl.php @@ -22,7 +22,7 @@ if (isset($this->nav[\Modules\Navigation\Models\NavigationType::CONTENT])) { foreach ($parent as $link) { if ($link['nav_parent'] == $this->parent) { echo '
  • ' - . $this->getText($link['nav_name']) . ''; + . $this->getHtml($link['nav_name']) . ''; } } } diff --git a/Theme/Backend/side.tpl.php b/Theme/Backend/side.tpl.php index 0b95d80..dcca801 100644 --- a/Theme/Backend/side.tpl.php +++ b/Theme/Backend/side.tpl.php @@ -18,18 +18,18 @@ if (isset($this->nav[\Modules\Navigation\Models\NavigationType::SIDE])) : ?>