Pbootcms留言“提交成功”的提示语怎么修改
如果需要修改的话,直接找到文件/apps/home/controller/MessageController.php,大概在103行找到:提交成功文字,修改为其他的即可。
if ($this->model->addMessage($data)) { session('lastsub', time()); // 记录最后提交时间 $this->log('留言提交成功!'); if ($this->config('message_send_mail') && $this->config('message_send_to')) { $mail_subject = "【" . CMSNAME . "】您有新的" . $value->form_name . "信息,请注意查收!"; $mail_body .= '<br>来自网站 ' . get_http_url() . ' (' . date('Y-m-d H:i:s') . ')'; sendmail($this->config(), $this->config('message_send_to'), $mail_subject, $mail_body); } alert_location('提交成功!', '-1', 1); } else { $this->log('留言提交失败!'); alert_back('提交失败!'); }