From b05fbe5978cf3c6853ae79c8c543619ea78a3676 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96sterreicher?= Date: Fri, 27 Aug 2021 19:05:00 +0200 Subject: [PATCH] Fixed PHP Version incompatibility issue --- include/person.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/person.class.php b/include/person.class.php index 328cc413c..a50417db0 100644 --- a/include/person.class.php +++ b/include/person.class.php @@ -276,7 +276,7 @@ class person extends basis_db $erg += $gewichtung[$i] * $this->svnr{$i}; } - if ($this->svnr{3} != ($erg % 11)) //Vergleichen der Pruefziffer mit Quersumme Modulo 11 + if ($this->svnr[3] != ($erg % 11)) //Vergleichen der Pruefziffer mit Quersumme Modulo 11 { $this->errormsg = 'SVNR ist ungueltig'; return false;