There are several Problems with this Plugin after the Update.
Fixed a Problem myself:
The “showNextMatchBox” function alternates from the “shopPrevMatchBox” by having a new “group” parameter, which never got assigned before. i hope this will get Fixed, or there will be a guide how to set this straight…
Just Replace this 2 Lines in the showNextMatchBox
BEFORE
$search = "
group= '".$instance['group']."' AND
league_id= '".$instance['league']."' AND
final= '' AND
season= '".$instance['season']."' AND TIMEDIFF(NOW(),
date) <= 0";
AFTER:
$search = "
league_id= '".$instance['league']."' AND
final= '' AND
season= '".$instance['season']."' AND TIMEDIFF(NOW(),
date) <= 0";
BEFORE:
$teams = $leaguemanager->getTeams( "
league_id= '".$instance['league']."' AND
season= '".$season."' AND
group= '".$instance['group']."'", "
idASC", 'ARRAY' );
AFTER:
'$teams = $leaguemanager->getTeams( 'league_id = '.$instance['league'], "
idASC", 'ARRAY' );
WORKED FOR ME