summaryrefslogtreecommitdiffstats
path: root/modules-available/dozmod/inc/pagemailtemplates.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/dozmod/inc/pagemailtemplates.inc.php')
-rw-r--r--modules-available/dozmod/inc/pagemailtemplates.inc.php8
1 files changed, 2 insertions, 6 deletions
diff --git a/modules-available/dozmod/inc/pagemailtemplates.inc.php b/modules-available/dozmod/inc/pagemailtemplates.inc.php
index 90734a50..b7b5a8d4 100644
--- a/modules-available/dozmod/inc/pagemailtemplates.inc.php
+++ b/modules-available/dozmod/inc/pagemailtemplates.inc.php
@@ -15,16 +15,10 @@ class Page_mail_templates extends Page
} elseif ($action === 'save') {
if (User::hasPermission("templates.save")) {
$this->handleSave();
- } else {
- Message::addError('main.no-permission');
- Util::redirect('?do=dozmod&section=templates');
}
} elseif ($action === 'reset') {
if(User::hasPermission("templates.reset")) {
$this->handleReset();
- } else {
- Message::addError('main.no-permission');
- Util::redirect('?do=dozmod&section=templates');
}
} else {
Message::addError('main.invalid-action', $action);
@@ -70,6 +64,8 @@ class Page_mail_templates extends Page
protected function doRender()
{
$this->enrichHtml();
+ $this->templates['allowedReset'] = User::hasPermission("templates.reset");
+ $this->templates['allowedSave'] = User::hasPermission("templates.save");
Render::addTemplate('templates', ['templates' => $this->templates]);
}