summaryrefslogtreecommitdiff
path: root/app/Controller/PasswordReset.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controller/PasswordReset.php')
-rw-r--r--app/Controller/PasswordReset.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controller/PasswordReset.php b/app/Controller/PasswordReset.php
index 23567c9c..f6a0eb8e 100644
--- a/app/Controller/PasswordReset.php
+++ b/app/Controller/PasswordReset.php
@@ -17,7 +17,7 @@ class PasswordReset extends Base
{
$this->checkActivation();
- $this->response->html($this->template->layout('password_reset/create', array(
+ $this->response->html($this->helper->layout->app('password_reset/create', array(
'errors' => $errors,
'values' => $values,
'no_layout' => true,
@@ -53,7 +53,7 @@ class PasswordReset extends Base
$user_id = $this->passwordReset->getUserIdByToken($token);
if ($user_id !== false) {
- $this->response->html($this->template->layout('password_reset/change', array(
+ $this->response->html($this->helper->layout->app('password_reset/change', array(
'token' => $token,
'errors' => $errors,
'values' => $values,