mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
Stringfunktionen im include auf mb_* umgestellt
This commit is contained in:
@@ -225,7 +225,7 @@ class mail
|
||||
{
|
||||
foreach ($rcvs as $rcv)
|
||||
$this->CC_recievers .= ",$rcv";
|
||||
$this->CC_recievers = substr($this->CC_recievers, 1);
|
||||
$this->CC_recievers = mb_substr($this->CC_recievers, 1);
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -244,7 +244,7 @@ class mail
|
||||
{
|
||||
foreach ($rcvs as $rcv)
|
||||
$this->BCC_recievers .= ",$rcv";
|
||||
$this->BCC_recievers = substr($this->BCC_recievers, 1);
|
||||
$this->BCC_recievers = mb_substr($this->BCC_recievers, 1);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user