From 17e19b2d5d41adfba6710e129aa943db232cbf6d Mon Sep 17 00:00:00 2001 From: devil_gong Date: Tue, 25 Dec 2018 13:47:39 +0800 Subject: [PATCH] debug --- application/admin/controller/Email.php | 4 ++-- application/admin/controller/Sms.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/application/admin/controller/Email.php b/application/admin/controller/Email.php index 74946ec37..ee0708814 100755 --- a/application/admin/controller/Email.php +++ b/application/admin/controller/Email.php @@ -48,9 +48,9 @@ class Email extends Common $this->assign('nav_type', $type); if($type == 'email') { - return $this->fetch('Index'); + return $this->fetch('index'); } else { - return $this->fetch('Message'); + return $this->fetch('message'); } } diff --git a/application/admin/controller/Sms.php b/application/admin/controller/Sms.php index 28e82501a..ee7dfb1ac 100755 --- a/application/admin/controller/Sms.php +++ b/application/admin/controller/Sms.php @@ -48,9 +48,9 @@ class Sms extends Common $this->assign('nav_type', $type); if($type == 'sms') { - return $this->fetch('Index'); + return $this->fetch('index'); } else { - return $this->fetch('Message'); + return $this->fetch('message'); } }