mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-23 18:02:18 +00:00
Stringfunktionen im include auf mb_* umgestellt
This commit is contained in:
@@ -155,12 +155,12 @@ class reihungstest extends basis_db
|
||||
return false;
|
||||
}
|
||||
//Gesamtlaenge pruefen
|
||||
if(strlen($this->ort_kurzbz)>8)
|
||||
if(mb_strlen($this->ort_kurzbz)>8)
|
||||
{
|
||||
$this->errormsg = 'Ort_kurzbz darf nicht länger als 8 Zeichen sein';
|
||||
return false;
|
||||
}
|
||||
if(strlen($this->anmerkung)>64)
|
||||
if(mb_strlen($this->anmerkung)>64)
|
||||
{
|
||||
$this->errormsg = 'Anmerkung darf nicht länger als 64 Zeichen sein';
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user