diff --git a/Admin/Settings/Theme/Backend/modules-nav-list.tpl.php b/Admin/Settings/Theme/Backend/modules-nav-list.tpl.php
index 5c74d0d..29ee526 100755
--- a/Admin/Settings/Theme/Backend/modules-nav-list.tpl.php
+++ b/Admin/Settings/Theme/Backend/modules-nav-list.tpl.php
@@ -54,7 +54,19 @@ echo $this->getData('nav')->render();
-
= $this->getHtml('Name'); ?>
+ | = $this->getHtml('Order'); ?>
+
+
+
+ | = $this->getHtml('Name'); ?>
- | = $apps[$nav->app]?->name; ?>
+ | = $this->printHtml($apps[$nav->app]?->name); ?>
| = $nav->id; ?>
- | = $nav->name; ?>
- | = $nav->uri; ?>
+ | = $nav->order; ?>
+ | = $this->printHtml($nav->name); ?>
+ | = $this->printHtml($nav->uri); ?>
diff --git a/tests/Bootstrap.php b/tests/Bootstrap.php
index d46fd31..b5d36a8 100755
--- a/tests/Bootstrap.php
+++ b/tests/Bootstrap.php
@@ -257,6 +257,25 @@ $CONFIG = [
'root' => '/',
'https' => false,
],
+ 'app' => [
+ 'path' => __DIR__,
+ 'default' => [
+ 'app' => 'Backend',
+ 'id' => 'backend',
+ 'lang' => 'en',
+ 'theme' => 'Backend',
+ 'org' => 1,
+ ],
+ 'domains' => [
+ '127.0.0.1' => [
+ 'app' => 'Backend',
+ 'id' => 'backend',
+ 'lang' => 'en',
+ 'theme' => 'Backend',
+ 'org' => 1,
+ ],
+ ],
+ ],
'socket' => [
'master' => [
'host' => '127.0.0.1',
|