crlf and newline bugfix

pull/2717/head
HB9HIL 2023-11-22 14:51:45 +01:00
rodzic 27c8af1f9f
commit 61d4c15ec0
3 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -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);

Wyświetl plik

@ -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);

Wyświetl plik

@ -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);