From f1a08332f7ec18186dce4a51618c56216736eaa4 Mon Sep 17 00:00:00 2001 From: hufangzhou Date: Mon, 10 Jul 2023 16:42:59 +0800 Subject: [PATCH] * Fix bug #36348. --- module/mail/control.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/module/mail/control.php b/module/mail/control.php index f9ac06264b..c1f94a5d3d 100755 --- a/module/mail/control.php +++ b/module/mail/control.php @@ -174,14 +174,14 @@ class mail extends control if(dao::isError()) return print(js::error(dao::getError())); $this->session->set('mailConfig', ''); - - $this->view->title = $this->lang->mail->common . $this->lang->colon . $this->lang->mail->save; - $this->view->position[] = html::a(inlink('index'), $this->lang->mail->common); - $this->view->position[] = $this->lang->mail->save; - - $this->view->mailExist = $this->mail->mailExist(); - $this->display(); } + + $this->view->title = $this->lang->mail->common . $this->lang->colon . $this->lang->mail->save; + $this->view->position[] = html::a(inlink('index'), $this->lang->mail->common); + $this->view->position[] = $this->lang->mail->save; + + $this->view->mailExist = $this->mail->mailExist(); + $this->display(); } /**