diff --git a/Admin/Install/Navigation.install.json b/Admin/Install/Navigation.install.json
index bdaad99..da2eae6 100755
--- a/Admin/Install/Navigation.install.json
+++ b/Admin/Install/Navigation.install.json
@@ -5,7 +5,7 @@
"type": 2,
"subtype": 1,
"name": "Auditor",
- "uri": "{/prefix}admin/audit/list",
+ "uri": "{/lang}/{/app}/admin/audit/list",
"target": "self",
"icon": null,
"order": 75,
@@ -19,7 +19,7 @@
"type": 3,
"subtype": 1,
"name": "Audits",
- "uri": "{/prefix}admin/audit/list",
+ "uri": "{/lang}/{/app}/admin/audit/list",
"target": "self",
"icon": null,
"order": 1,
diff --git a/Theme/Backend/audit-list.tpl.php b/Theme/Backend/audit-list.tpl.php
index 5c3a69a..08b0590 100755
--- a/Theme/Backend/audit-list.tpl.php
+++ b/Theme/Backend/audit-list.tpl.php
@@ -104,7 +104,7 @@ echo $this->getData('nav')->render(); ?>
$audit) : ++$count;
- $url = UriFactory::build('admin/audit/single?id=' . $audit->getId()); ?>
+ $url = UriFactory::build('{/lang}/{/app}/admin/audit/single?id=' . $audit->getId()); ?>
| = $audit->getId(); ?>
| = $this->printHtml($audit->getModule()); ?>
@@ -115,7 +115,7 @@ echo $this->getData('nav')->render(); ?>
| = $audit->getType(); ?>
| = $audit->getTrigger(); ?>
- | = $this->printHtml(
+ | = $this->printHtml(
$this->renderUserName('%3$s %2$s %1$s', [$audit->createdBy->name1, $audit->createdBy->name2, $audit->createdBy->name3, $audit->createdBy->login])
); ?>
| = $this->printHtml($audit->getRef()); ?>
diff --git a/Theme/Backend/audit-single.tpl.php b/Theme/Backend/audit-single.tpl.php
index dbd4f9e..33d2c4b 100755
--- a/Theme/Backend/audit-single.tpl.php
+++ b/Theme/Backend/audit-single.tpl.php
@@ -53,7 +53,7 @@ echo $this->getData('nav')->render();
| = $audit->getType(); ?>
|
| = $this->getHtml('By'); ?>
- | = $audit->createdBy->name1; ?> = $audit->createdBy->name2; ?>
+ | = $audit->createdBy->name1; ?> = $audit->createdBy->name2; ?>
|
| = $this->getHtml('Ref'); ?>
| = $this->printHtml($audit->getRef()); ?>
@@ -62,7 +62,7 @@ echo $this->getData('nav')->render();
| = $this->getDateTime($audit->createdAt, 'very_long'); ?>
|
| = $this->getHtml('Module'); ?>
- | = $audit->getModule(); ?>
+ | = $audit->getModule(); ?>
|
| = $this->getHtml('IP'); ?>
| = \long2ip($audit->getIp()); ?>
diff --git a/info.json b/info.json
index 25a11a5..a493660 100755
--- a/info.json
+++ b/info.json
@@ -12,7 +12,7 @@
},
"creator": {
"name": "Karaka",
- "website": "www.spl1nes.com"
+ "website": "jingga.app"
},
"description": "The administration module.",
"directory": "Auditor",
|