PHP 7.2 compatibility
When server use PHP 7.2, entries module generate following error at the front-end
Fatal error: Declaration of SPEntriesModViewMod::display() must be compatible with SPSectionView::display($type = 'section', $out = NULL) in ...\htdocs\sobi\modules\mod_sobipro_entries\view.php on line 28
Possible solution from one of the users, in the file /modules/mod_sobipro_entries/view.php change line 31 from:
public function display()
to
public function display($type = 'section', $out = null):
but it need to be tested