diff --git a/Admin/Install/Navigation.install.json b/Admin/Install/Navigation.install.json
index b598c8f..ac61e8d 100644
--- a/Admin/Install/Navigation.install.json
+++ b/Admin/Install/Navigation.install.json
@@ -19,7 +19,7 @@
"type": 2,
"subtype": 1,
"name": "Accounts",
- "uri": "{/base}/{/lang}/backend/accounting/gl/list?{?}",
+ "uri": "/{/lang}/backend/accounting/gl/list?{?}",
"target": "self",
"icon": null,
"order": 5,
@@ -33,7 +33,7 @@
"type": 3,
"subtype": 1,
"name": "List",
- "uri": "{/base}/{/lang}/backend/accounting/gl/list?{?}",
+ "uri": "/{/lang}/backend/accounting/gl/list?{?}",
"target": "self",
"icon": null,
"order": 1,
@@ -48,7 +48,7 @@
"type": 3,
"subtype": 1,
"name": "Create",
- "uri": "{/base}/{/lang}/backend/accounting/gl/create?{?}",
+ "uri": "/{/lang}/backend/accounting/gl/create?{?}",
"target": "self",
"icon": null,
"order": 5,
@@ -65,7 +65,7 @@
"type": 2,
"subtype": 1,
"name": "BatchPostings",
- "uri": "{/base}/{/lang}/backend/accounting/stack/list?{?}",
+ "uri": "/{/lang}/backend/accounting/stack/list?{?}",
"target": "self",
"icon": null,
"order": 10,
@@ -79,7 +79,7 @@
"type": 3,
"subtype": 1,
"name": "List",
- "uri": "{/base}/{/lang}/backend/accounting/stack/list?{?}",
+ "uri": "/{/lang}/backend/accounting/stack/list?{?}",
"target": "self",
"icon": null,
"order": 5,
@@ -94,7 +94,7 @@
"type": 3,
"subtype": 1,
"name": "Archive",
- "uri": "{/base}/{/lang}/backend/accounting/stack/archive/list?{?}",
+ "uri": "/{/lang}/backend/accounting/stack/archive/list?{?}",
"target": "self",
"icon": null,
"order": 10,
@@ -109,7 +109,7 @@
"type": 3,
"subtype": 1,
"name": "Predefined",
- "uri": "{/base}/{/lang}/backend/accounting/stack/predefined/list?{?}",
+ "uri": "/{/lang}/backend/accounting/stack/predefined/list?{?}",
"target": "self",
"icon": null,
"order": 10,
@@ -124,7 +124,7 @@
"type": 3,
"subtype": 1,
"name": "Create",
- "uri": "{/base}/{/lang}/backend/accounting/stack/create?{?}",
+ "uri": "/{/lang}/backend/accounting/stack/create?{?}",
"target": "self",
"icon": null,
"order": 15,
@@ -141,7 +141,7 @@
"type": 2,
"subtype": 1,
"name": "Entries",
- "uri": "{/base}/{/lang}/backend/accounting/entries/dashboard?{?}",
+ "uri": "/{/lang}/backend/accounting/entries/dashboard?{?}",
"target": "self",
"icon": null,
"order": 1,
diff --git a/Theme/Backend/gl-list.tpl.php b/Theme/Backend/gl-list.tpl.php
index 5040aed..a268af2 100644
--- a/Theme/Backend/gl-list.tpl.php
+++ b/Theme/Backend/gl-list.tpl.php
@@ -37,7 +37,7 @@ echo $this->getData('nav')->render(); ?>
| = $footerView->render(); ?>
|
$value) : $c++;
- $url = \phpOMS\Uri\UriFactory::build('{/base}/{/lang}/backend/admin/group/settings?{?}&id=' . $value->getId()); ?>
+ $url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/admin/group/settings?{?}&id=' . $value->getId()); ?>
| = $this->printHtml($value->getId()); ?>
| = $this->printHtml($value->getName()); ?>
diff --git a/Theme/Backend/journal-list.tpl.php b/Theme/Backend/journal-list.tpl.php
index 20c1de2..7de2658 100644
--- a/Theme/Backend/journal-list.tpl.php
+++ b/Theme/Backend/journal-list.tpl.php
@@ -35,7 +35,7 @@ echo $this->getData('nav')->render(); ?>
|
| = $footerView->render(); ?>
|
$value) : $c++;
- $url = \phpOMS\Uri\UriFactory::build('{/base}/{/lang}/backend/admin/group/settings?{?}&id=' . $value->getId()); ?>
+ $url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/admin/group/settings?{?}&id=' . $value->getId()); ?>
| = $this->printHtml($value->getId()); ?>
| = $this->printHtml($value->getName()); ?>
diff --git a/Theme/Backend/stack-archive-list.tpl.php b/Theme/Backend/stack-archive-list.tpl.php
index 3ae2f15..1eda660 100644
--- a/Theme/Backend/stack-archive-list.tpl.php
+++ b/Theme/Backend/stack-archive-list.tpl.php
@@ -37,7 +37,7 @@ echo $this->getData('nav')->render(); ?>
|
| = $footerView->render(); ?>
|
$value) : $c++;
- $url = \phpOMS\Uri\UriFactory::build('{/base}/{/lang}/backend/admin/group/settings?{?}&id=' . $value->getId()); ?>
+ $url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/admin/group/settings?{?}&id=' . $value->getId()); ?>
| = $this->printHtml($value->getId()); ?>
| = $this->printHtml($value->getName()); ?>
diff --git a/Theme/Backend/stack-list.tpl.php b/Theme/Backend/stack-list.tpl.php
index f2f4a69..edde3d8 100644
--- a/Theme/Backend/stack-list.tpl.php
+++ b/Theme/Backend/stack-list.tpl.php
@@ -39,7 +39,7 @@ echo $this->getData('nav')->render(); ?>
|
| = $footerView->render(); ?>
|
$value) : $c++;
- $url = \phpOMS\Uri\UriFactory::build('{/base}/{/lang}/backend/admin/group/settings?{?}&id=' . $value->getId()); ?>
+ $url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/admin/group/settings?{?}&id=' . $value->getId()); ?>
| = $this->printHtml($value->getId()); ?>
| = $this->printHtml($value->getName()); ?>
diff --git a/Theme/Backend/stack-predefined-list.tpl.php b/Theme/Backend/stack-predefined-list.tpl.php
index 37cc512..7e7a1c1 100644
--- a/Theme/Backend/stack-predefined-list.tpl.php
+++ b/Theme/Backend/stack-predefined-list.tpl.php
@@ -38,7 +38,7 @@ echo $this->getData('nav')->render(); ?>
|
| = $footerView->render(); ?>
|
$value) : $c++;
- $url = \phpOMS\Uri\UriFactory::build('{/base}/{/lang}/backend/admin/group/settings?{?}&id=' . $value->getId()); ?>
+ $url = \phpOMS\Uri\UriFactory::build('/{/lang}/backend/admin/group/settings?{?}&id=' . $value->getId()); ?>
| = $this->printHtml($value->getId()); ?>
| = $this->printHtml($value->getName()); ?>
|