diff --git a/Admin/Install/Application/Shop/info.json b/Admin/Install/Application/Shop/info.json
index 449489a..5bafc76 100755
--- a/Admin/Install/Application/Shop/info.json
+++ b/Admin/Install/Application/Shop/info.json
@@ -12,7 +12,7 @@
},
"creator": {
"name": "Karaka",
- "website": "www.spl1nes.com"
+ "website": "jingga.app"
},
"description": "The shop application.",
"directory": "Shop",
diff --git a/Admin/Install/Navigation.install.json b/Admin/Install/Navigation.install.json
index b5413e5..8b7841c 100755
--- a/Admin/Install/Navigation.install.json
+++ b/Admin/Install/Navigation.install.json
@@ -19,7 +19,7 @@
"type": 2,
"subtype": 1,
"name": "Tickets",
- "uri": "{/prefix}support/list",
+ "uri": "{/lang}/{/app}/support/list",
"target": "self",
"icon": null,
"order": 1,
@@ -33,7 +33,7 @@
"type": 3,
"subtype": 1,
"name": "List",
- "uri": "{/prefix}support/list",
+ "uri": "{/lang}/{/app}/support/list",
"target": "self",
"icon": null,
"order": 1,
@@ -49,7 +49,7 @@
"type": 3,
"subtype": 1,
"name": "Create",
- "uri": "{/prefix}support/create?{?}",
+ "uri": "{/lang}/{/app}/support/create?{?}",
"target": "self",
"icon": null,
"order": 5,
@@ -67,7 +67,7 @@
"type": 2,
"subtype": 1,
"name": "Settings",
- "uri": "{/prefix}support/settings/dashboard?{?}",
+ "uri": "{/lang}/{/app}/support/settings/dashboard?{?}",
"target": "self",
"icon": null,
"order": 5,
@@ -83,7 +83,7 @@
"type": 2,
"subtype": 1,
"name": "Analysis",
- "uri": "{/prefix}support/analysis/dashboard?{?}",
+ "uri": "{/lang}/{/app}/support/analysis/dashboard?{?}",
"target": "self",
"icon": null,
"order": 10,
@@ -101,7 +101,7 @@
"type": 2,
"subtype": 1,
"name": "Support",
- "uri": "{/prefix}private/support/dashboard?{?}",
+ "uri": "{/lang}/{/app}/private/support/dashboard?{?}",
"target": "self",
"icon": null,
"order": 5,
diff --git a/Theme/Backend/support-list.tpl.php b/Theme/Backend/support-list.tpl.php
index a7bc7f6..4486df7 100755
--- a/Theme/Backend/support-list.tpl.php
+++ b/Theme/Backend/support-list.tpl.php
@@ -40,7 +40,7 @@ echo $this->getData('nav')->render(); ?>
$ticket) : ++$c;
- $url = UriFactory::build('support/ticket?{?}&id=' . $ticket->getId());
+ $url = UriFactory::build('{/lang}/{/app}/support/ticket?{?}&id=' . $ticket->getId());
?>
|
@@ -49,9 +49,9 @@ echo $this->getData('nav')->render(); ?>
| = $this->getHtml('P' . $ticket->task->getPriority(), 'Tasks'); ?>
| = $this->printHtml($ticket->task->title); ?>
- | = $this->printHtml($ticket->task->createdBy->name1); ?> = $this->printHtml($ticket->task->createdBy->name2); ?>
+ | = $this->printHtml($ticket->task->createdBy->name1); ?> = $this->printHtml($ticket->task->createdBy->name2); ?>
| = $this->printHtml($ticket->task->createdBy->name1); ?> = $this->printHtml($ticket->task->createdBy->name2); ?>
- | = $this->printHtml($ticket->for->name1); ?> = $this->printHtml($ticket->for->name2); ?>
+ | = $this->printHtml($ticket->for->name1); ?> = $this->printHtml($ticket->for->name2); ?>
| = $this->printHtml($ticket->task->createdAt->format('Y-m-d H:i')); ?>
|
= $this->getHtml('Empty', '0', '0'); ?>
diff --git a/Theme/Backend/support-ticket.tpl.php b/Theme/Backend/support-ticket.tpl.php
index e2e7c75..40f87b4 100755
--- a/Theme/Backend/support-ticket.tpl.php
+++ b/Theme/Backend/support-ticket.tpl.php
@@ -88,7 +88,7 @@ echo $this->getData('nav')->render(); ?>
@@ -245,7 +245,7 @@ echo $this->getData('nav')->render(); ?>
@@ -291,10 +291,10 @@ echo $this->getData('nav')->render(); ?>
) : ?>
- = $this->printHtml($element->taskElement->createdBy->name1); ?> = $this->getHtml('forwarded_to'); ?>
+ = $this->printHtml($element->taskElement->createdBy->name1); ?> = $this->getHtml('forwarded_to'); ?>
- = $this->printHtml($to->getRelation()->name1); ?>
+ = $this->printHtml($to->getRelation()->name1); ?>
= $this->printHtml($to->getRelation()->name); ?>
diff --git a/Views/TicketView.php b/Views/TicketView.php
index a5cf594..d7e4c80 100755
--- a/Views/TicketView.php
+++ b/Views/TicketView.php
@@ -70,10 +70,10 @@ class TicketView extends View
$profile = ProfileMapper::get()->with('image')->where('account', $account)->execute();
if (($profile instanceof NullProfile) || $profile->image->getPath() === '') {
- return UriFactory::build('' . $this->defaultProfileImage->getPath());
+ return UriFactory::build('{/lang}/{/app}/' . $this->defaultProfileImage->getPath());
}
- return UriFactory::build('' . $profile->image->getPath());
+ return UriFactory::build('{/lang}/{/app}/' . $profile->image->getPath());
}
/**
diff --git a/info.json b/info.json
index e69b66b..8c270d5 100755
--- a/info.json
+++ b/info.json
@@ -12,7 +12,7 @@
},
"creator": {
"name": "Karaka",
- "website": "www.spl1nes.com"
+ "website": "jingga.app"
},
"description": "Support module.",
"directory": "Support",
|