@@ -176,33 +176,33 @@ echo $this->getData('nav')->render(); ?>
- = $this->getText('Payment') ?>
+ = $this->getHtml('Payment'); ?>
@@ -215,15 +215,15 @@ echo $this->getData('nav')->render(); ?>
- = $this->getText('Media'); ?>
+ = $this->getHtml('Media') ?>
@@ -244,24 +244,24 @@ echo $this->getData('nav')->render(); ?>
- = $this->getText('Logs') ?>
+ = $this->getHtml('Logs'); ?>
| IP
- | = $this->getText('ID', 0, 0); ?>
- | = $this->getText('Name'); ?>
- | = $this->getText('Log'); ?>
- | = $this->getText('Date'); ?>
+ | = $this->getHtml('ID', 0, 0); ?>
+ | = $this->getHtml('Name') ?>
+ | = $this->getHtml('Log') ?>
+ | = $this->getHtml('Date') ?>
|
- | = $footerView->render(); ?>
+ | = htmlspecialchars($footerView->render(), ENT_COMPAT, 'utf-8'); ?>
|
- | = $this->request->getOrigin(); ?>
- | = $this->request->getAccount(); ?>
- | = $this->request->getAccount(); ?>
+ | = htmlspecialchars($this->request->getOrigin(), ENT_COMPAT, 'utf-8'); ?>
+ | = htmlspecialchars($this->request->getAccount(), ENT_COMPAT, 'utf-8'); ?>
+ | = htmlspecialchars($this->request->getAccount(), ENT_COMPAT, 'utf-8'); ?>
| Create Invoice
- | = (new \DateTime('now'))->format('Y-m-d H:i:s') ?>
+ | = htmlspecialchars((new \DateTime('now'))->format('Y-m-d H:i:s') , ENT_COMPAT, 'utf-8'); ?>
|
diff --git a/Theme/Backend/invoice-list.tpl.php b/Theme/Backend/invoice-list.tpl.php
index 0b40485..056e3b1 100644
--- a/Theme/Backend/invoice-list.tpl.php
+++ b/Theme/Backend/invoice-list.tpl.php
@@ -24,25 +24,25 @@ echo $this->getData('nav')->render(); ?>
- = $this->getText('Invoices') ?>
+ = $this->getHtml('Invoices'); ?>
- | = $this->getText('ID', 0, 0); ?>
- | = $this->getText('Type'); ?>
- | = $this->getText('ClientID'); ?>
- | = $this->getText('Client'); ?>
- | = $this->getText('Net'); ?>
- | = $this->getText('Gross'); ?>
- | = $this->getText('Created'); ?>
- | = $this->getText('Due'); ?>
+ | = $this->getHtml('ID', 0, 0); ?>
+ | = $this->getHtml('Type') ?>
+ | = $this->getHtml('ClientID') ?>
+ | = $this->getHtml('Client') ?>
+ | = $this->getHtml('Net') ?>
+ | = $this->getHtml('Gross') ?>
+ | = $this->getHtml('Created') ?>
+ | = $this->getHtml('Due') ?>
|
- | = $footerView->render(); ?>
+ | = htmlspecialchars($footerView->render(), ENT_COMPAT, 'utf-8'); ?>
|
$value) : $count++; ?>
- | = $this->getText('Empty', 0, 0); ?>
+ | | = $this->getHtml('Empty', 0, 0); ?>
|
diff --git a/Theme/Backend/purchase-invoice-list.tpl.php b/Theme/Backend/purchase-invoice-list.tpl.php
index 3b65458..9140b75 100644
--- a/Theme/Backend/purchase-invoice-list.tpl.php
+++ b/Theme/Backend/purchase-invoice-list.tpl.php
@@ -24,25 +24,25 @@ echo $this->getData('nav')->render(); ?>
- = $this->getText('Invoices') ?>
+ = $this->getHtml('Invoices'); ?>
- | = $this->getText('ID', 0, 0); ?>
- | = $this->getText('Type'); ?>
- | = $this->getText('SupplierID'); ?>
- | = $this->getText('Supplier'); ?>
- | = $this->getText('Net'); ?>
- | = $this->getText('Gross'); ?>
- | = $this->getText('Created'); ?>
- | = $this->getText('Due'); ?>
+ | = $this->getHtml('ID', 0, 0); ?>
+ | = $this->getHtml('Type') ?>
+ | = $this->getHtml('SupplierID') ?>
+ | = $this->getHtml('Supplier') ?>
+ | = $this->getHtml('Net') ?>
+ | = $this->getHtml('Gross') ?>
+ | = $this->getHtml('Created') ?>
+ | = $this->getHtml('Due') ?>
|
- | = $footerView->render(); ?>
+ | = htmlspecialchars($footerView->render(), ENT_COMPAT, 'utf-8'); ?>
|
$value) : $count++; ?>
- | = $this->getText('Empty', 0, 0); ?>
+ | | = $this->getHtml('Empty', 0, 0); ?>
|
|