crlf and newline bugfix
这个提交包含在:
父节点
27c8af1f9f
当前提交
61d4c15ec0
共有 3 个文件被更改,包括 6 次插入 和 0 次删除
|
|
@ -360,6 +360,8 @@ class Options extends CI_Controller {
|
|||
'smtp_port' => $this->optionslib->get_option('smtpPort'),
|
||||
'smtp_user' => $this->optionslib->get_option('smtpUsername'),
|
||||
'smtp_pass' => $this->optionslib->get_option('smtpPassword'),
|
||||
'crlf' => "\r\n",
|
||||
'newline' => "\r\n"
|
||||
);
|
||||
|
||||
$this->email->initialize($config);
|
||||
|
|
|
|||
|
|
@ -174,6 +174,8 @@ class Oqrs extends CI_Controller {
|
|||
'smtp_port' => $this->optionslib->get_option('smtpPort'),
|
||||
'smtp_user' => $this->optionslib->get_option('smtpUsername'),
|
||||
'smtp_pass' => $this->optionslib->get_option('smtpPassword'),
|
||||
'crlf' => "\r\n",
|
||||
'newline' => "\r\n"
|
||||
);
|
||||
|
||||
$this->email->initialize($config);
|
||||
|
|
|
|||
|
|
@ -718,6 +718,8 @@ class User extends CI_Controller {
|
|||
'smtp_port' => $this->optionslib->get_option('smtpPort'),
|
||||
'smtp_user' => $this->optionslib->get_option('smtpUsername'),
|
||||
'smtp_pass' => $this->optionslib->get_option('smtpPassword'),
|
||||
'crlf' => "\r\n",
|
||||
'newline' => "\r\n"
|
||||
);
|
||||
|
||||
$this->email->initialize($config);
|
||||
|
|
|
|||
正在加载…
在新工单中引用