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'); } }