In order to get NCAA football working for this season, 2 lines need to
be changed in the gotCFB sub.

Change line 5003.

From:

Code:
--------------------
    if ($dateText =~/$curMonth/) {
--------------------

TO:

Code:
--------------------
    if ($dateText =~/Today\'s Games/|$dateText =~/$curMonth/) {
--------------------

And change line 5021
FROM:

Code:
--------------------
    my @teams   =  $game_div->look_down( "_tag", "a", "href", qr{clubhouse\?} );
--------------------

TO:

Code:
--------------------
    my @teams   =  $game_div->look_down( "_tag", "a", "href", qr{\/team\/_\/id} 
);
--------------------


Cheers,
Don


-- 
BoomX2
------------------------------------------------------------------------
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

Reply via email to