mbonsack wrote: > Unfortunately, pro football doesn't work at all for me; nothing is > displayed. CFB works fine. Is there any debug settings I can try? > > Thanks! -mark
I took a look at tcuttings last release and I think I found your issue.
The nfl teams in the settings.pm file needs to be changed as follows
FROM:
Code:
--------------------
my %nflTeams = (
'Cowboys' => 'Cowboys',
'Giants' => 'Giants',
'Jets' => 'Jets',
'Eagles' => 'Eagles',
'Redskins' => 'Redskins',
'Bears' => 'Bears',
'Packers' => 'Packers',
'Vikings' => 'Vikings',
'Lions' => 'Lions',
'Falcons' => 'Falcons',
'Saints' => 'Saints',
'Buccaneers' => 'Buccaneers',
'Panthers' => 'Panthers',
'Rams' => 'Rams',
'Cardinals' => 'Cardinals',
'49ers' => '49ers',
'Seahawks' => 'Seahawks',
'Broncos' => 'Broncos',
'Bills' => 'Bills',
'Patriots' => 'Patriots',
'Dolphins' => 'Dolphins',
'Bengals' => 'Bengals',
'Browns' => 'Browns',
'Steelers' => 'Steelers',
'Ravens' => 'Ravens',
'Titans' => 'Titans',
'Jaguars' => 'Jaguars',
'Texans' => 'Texans',
'Colts' => 'Colts',
'Chiefs' => 'Chiefs',
'Raiders' => 'Raiders',
'Chargers' => 'Chargers',
'0' => 'None',
'1' => 'All'
);
--------------------
TO:
Code:
--------------------
my %nflTeams = (
'SF' => '49ers',
'CHI' => 'Bears',
'CIN' => 'Bengals',
'BUF' => 'Bills',
'DEN' => 'Broncos',
'CLE' => 'Browns',
'TB' => 'Buccaneers',
'ARI' => 'Cardinals',
'SD' => 'Chargers',
'KC' => 'Chiefs',
'IND' => 'Colts',
'DAL' => 'Cowboys',
'MIA' => 'Dolphins',
'PHI' => 'Eagles',
'ATL' => 'Falcons',
'NYG' => 'Giants',
'JAC' => 'Jaguars',
'NYJ' => 'Jets',
'DET' => 'Lions',
'GB' => 'Packers',
'CAR' => 'Panthers',
'NE' => 'Patriots',
'OAK' => 'Raiders',
'STL' => 'Rams',
'BAL' => 'Ravens',
'WAS' => 'Redskins',
'NO' => 'Saints',
'SEA' => 'Seahawks',
'PIT' => 'Steelers',
'HOU' => 'Texans',
'TEN' => 'Titans',
'MIN' => 'Vikings',
'0' => 'None',
'1' => 'All'
);
--------------------
You can use your favorite text file editor and copy and paste the above
in place of what's there, save, restart SDT and NFL games should start
working for you. You may have to reselect your teams.
------------------------------------------------------------------------
BoomX2's Profile: http://forums.slimdevices.com/member.php?userid=33529
View this thread: http://forums.slimdevices.com/showthread.php?t=14327
_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/plugins
