[mythtv] [mythtv-commits] Ticket #1065: Mythweb doesn't display recorded show as recorded

Dag Nygren dag at newtech.fi
Wed Jan 18 22:54:18 UTC 2006


> > OK,
> > I do notice that mythfrontend will show them as recorded though
> > 
> > Do you mind if I take a look how it is done there?
> 
> Well, I did 
> and changed the last join in programs.php to the following:
>                       LEFT JOIN oldrecorded ON
>                                     oldrecorded.title = program.title
>                                     AND oldrecorded.starttime  = 
> program.starttime

Or even better:
                       LEFT JOIN oldrecorded ON
                                    oldrecorded.chanid = program.chanid
                                    AND oldrecorded.title = program.title
                                    AND oldrecorded.starttime  = 
program.starttime
 to be sure to show only recordings from the right channel, even if a program
starting at the right time happen to have the same title.

Dag




More information about the mythtv-dev mailing list