Stringfunktionen im include auf mb_* umgestellt

This commit is contained in:
Andreas Österreicher
2009-06-22 08:59:45 +00:00
parent 0dd950839b
commit c45029583e
51 changed files with 266 additions and 290 deletions
+2 -2
View File
@@ -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
{