To ensure the compatibility to PHP 7 it would be necessary to use the class StringUtil instead of String if the contao release >= 3.5 is used.
The file ModuleMemberlist.php had to be modified near line 70
protected function compile() { if (!version_compare(VERSION, '3.5', '<')) { $this->import('StringUtil'); } else { $this->import('String'); }
BR
ChrMue
To ensure the compatibility to PHP 7 it would be necessary to use the class StringUtil instead of String if the contao release >= 3.5 is used. The file ModuleMemberlist.php had to be modified near line 70
protected function compile() { if (!version_compare(VERSION, '3.5', '<')) { $this->import('StringUtil'); } else { $this->import('String'); }
BR ChrMue.