Ticket #6459: mythweb_add_start_early_end_late.diff

File mythweb_add_start_early_end_late.diff, 1.2 KB (added by Roo, 15 years ago)
  • modules/tv/tmpl/default/schedules.php

     
    8484    <th class="x-group"><?php      echo t('Recording Group');     ?></th>
    8585    <th class="x-type"><?php       echo t('Type');                ?></th>
    8686    <th class="x-sgroup"><?php     echo t('Storage Group');       ?></th>
     87    <th class="x-startoffset"><?php echo t('Start Early');        ?></th>
     88    <th class="x-endoffset"><?php  echo t('End Late');            ?></th>
    8789    <th class="x-lastrec"><?php    echo t('Last Recorded');       ?></th>
    8890</tr>
    8991</thead>
     
    179181    <td class="x-group"><?php echo _or($schedule->recgroup, '&nbsp;') ?></td>
    180182    <td class="x-type"><?php  echo $schedule->texttype ?></td>
    181183    <td class="x-group"><?php echo _or($schedule->storagegroup, '&nbsp;') ?></td>
     184    <td class="x-startoffset"><?php echo _or($schedule->startoffset, '&nbsp;') ?></td>
     185    <td class="x-endoffset"><?php echo _or($schedule->endoffset, '&nbsp;') ?></td>
    182186    <td class="x-lastrec"><?php echo _or($schedule->last_record, '&nbsp;') ?></td>
    183187</tr><?php
    184188            $prev_group = $cur_group;