Update Email page

This commit is contained in:
Visman 2021-11-21 10:35:26 +07:00
parent 426f3f3a14
commit 6424a13b5d
2 changed files with 2 additions and 2 deletions

View file

@ -126,7 +126,7 @@ class Email extends Page
$this->nameTpl = 'email';
$this->robots = 'noindex';
$this->crumbs = $this->crumbs(__(['Send email to %s', $this->curUser->username]));
$this->formTitle = __('Send email');
$this->formTitle = 'Send email';
$this->form = $this->formEmail($args, $data);
return $this;

View file

@ -5,7 +5,7 @@
</div>
@if ($form = $p->form)
<section class="f-post-form f-send-email-form">
<h2>{!! $p->formTitle !!}</h2>
<h2>{!! __($p->formTitle) !!}</h2>
<div class="f-fdiv">
@include ('layouts/form')
</div>