Ticket #4418: recordings_storagegroup.15303.patch

File recordings_storagegroup.15303.patch, 1.5 KB (added by penguin@…, 16 years ago)

Patch for svn revision 15303

  • modules/tv/tmpl/default/schedules.php

     
    4747    <th class="-transcoder"><?php echo get_sort_link('transcoder',                             t('Transcoder'))         ?></th>
    4848    <th class="-group"><?php      echo get_sort_link('recgroup',                               t('Recording Group'))    ?></th>
    4949    <th class="-type"><?php       echo get_sort_link('type',                                   t('Type'))               ?></td>
     50    <th class="-group"><?php      echo get_sort_link('storagegroup',                           t('Storage Group'))      ?></th>
    5051</tr><?php
    5152        $prev_group = '';
    5253        $cur_group  = '';
     
    7374                $cur_group = $schedule->profile;
    7475            elseif ($group_field == 'recgroup')
    7576                $cur_group = $schedule->recgroup;
     77            elseif ($group_field == 'storagegroup')
     78                $cur_group = $schedule->storagegroup;
    7679        // "none"?
    7780            $cur_group or $cur_group = t('None');
    7881
     
    136139        ?></td>
    137140    <td class="-group"><?php echo _or($schedule->recgroup, '&nbsp;') ?></td>
    138141    <td class="-type"><?php  echo $schedule->texttype ?></td>
     142    <td class="-group"><?php echo _or($schedule->storagegroup, '&nbsp;') ?></td>
    139143</tr><?php
    140144            $prev_group = $cur_group;
    141145        }