~ubuntu-branches/ubuntu/karmic/mythplugins/karmic

« back to all changes in this revision

Viewing changes to mythweb/modules/tv/tmpl/default/schedules.php

  • Committer: Bazaar Package Importer
  • Author(s): Mario Limonciello
  • Date: 2009-10-11 13:53:40 UTC
  • mfrom: (1.1.34 upstream)
  • Revision ID: james.westby@ubuntu.com-20091011135340-00r031l307vi5d17
Tags: 0.22.0~trunk22359-0ubuntu1
* New upstream checkout (r22359).
* debian/control:
  - Demote xine/ogle/mplayer to suggests as Internal is sufficient now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 * It must define one method.   documentation will be added someday.
5
5
 *
6
6
 * @url         $URL: http://svn.mythtv.org/svn/trunk/mythplugins/mythweb/modules/tv/tmpl/default/schedules.php $
7
 
 * @date        $Date: 2009-09-15 19:08:50 -0500 (Tue, 15 Sep 2009) $
8
 
 * @version     $Revision: 21876 $
 
7
 * @date        $Date: 2009-10-09 00:29:02 -0500 (Fri, 09 Oct 2009) $
 
8
 * @version     $Revision: 22328 $
9
9
 * @author      $Author: kormoc $
10
10
 *
11
11
 * @package     MythWeb
92
92
<?php
93
93
        $prev_group = '';
94
94
        $cur_group  = '';
95
 
        foreach ($the_schedules as $recordId) {
96
 
            $schedule = new Schedule($recordId);
 
95
        foreach ($the_schedules as $schedule) {
97
96
        // Reset the command variable to a default URL
98
97
            $urlstr = 'recordid='.$schedule->recordid;
99
98
 
176
175
        ?></td>
177
176
    <td class="x-profile"><?php echo _or($schedule->profile,  '&nbsp;') ?></td>
178
177
    <td class="x-transcoder"><?php
179
 
        echo Transcoder::find($schedule->transcoder)
 
178
        global $Transcoders;
 
179
        echo _or($Transcoders[$schedule->transcoder],  '&nbsp;')
180
180
        ?></td>
181
181
    <td class="x-group"><?php echo _or($schedule->recgroup, '&nbsp;') ?></td>
182
182
    <td class="x-type"><?php  echo $schedule->texttype ?></td>