mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
Stringfunktionen im include auf mb_* umgestellt
This commit is contained in:
@@ -93,12 +93,12 @@ class feedback extends basis_db
|
||||
*/
|
||||
protected function validate()
|
||||
{
|
||||
if(strlen($this->betreff)>128)
|
||||
if(mb_strlen($this->betreff)>128)
|
||||
{
|
||||
$this->errormsg = 'Betreff darf nicht laenger als 128 Zeichen sein';
|
||||
return false;
|
||||
}
|
||||
if(strlen($this->uid)>32)
|
||||
if(mb_strlen($this->uid)>32)
|
||||
{
|
||||
$this->errormsg = 'UID darf nicht laenger als 32 Zeichen sein';
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user