| 1 | 190a191,195
|
|---|
| 2 | > if ($_GET['title']) {
|
|---|
| 3 | > $title_cols = 1;
|
|---|
| 4 | > } else {
|
|---|
| 5 | > $title_cols = 0;
|
|---|
| 6 | > }
|
|---|
| 7 | 204c209
|
|---|
| 8 | < } elseif ( ! (($group_field == "title") || ($group_field == "channum") || ($group_field == "airdate") || ($group_field == "recgroup")) ) {
|
|---|
| 9 | ---
|
|---|
| 10 | > } elseif ( ! (($group_field == "title") || ($group_field == "programid") || ($group_field == "channum") || ($group_field == "airdate") || ($group_field == "recgroup")) ) {
|
|---|
| 11 | 229a235,238
|
|---|
| 12 | > <?php
|
|---|
| 13 | > if ($title_cols)
|
|---|
| 14 | > echo "\t<td>" . get_sort_link('programid', t('programid')) . "</td>\n";
|
|---|
| 15 | > ?>
|
|---|
| 16 | 254a264,266
|
|---|
| 17 | > case 'programid':
|
|---|
| 18 | > $cur_group = $show->programid;
|
|---|
| 19 | > break;
|
|---|
| 20 | 259c271
|
|---|
| 21 | < $colspan = 9 + $recgroup_cols;
|
|---|
| 22 | ---
|
|---|
| 23 | > $colspan = 9 + $recgroup_cols + $title_cols;
|
|---|
| 24 | 297a310,313
|
|---|
| 25 | > <?php
|
|---|
| 26 | > if ($title_cols)
|
|---|
| 27 | > echo "\t<td nowrap align=\"center\">$show->programid</td>\n";
|
|---|
| 28 | > ?>
|
|---|
| 29 | 313c329
|
|---|
| 30 | < echo("</tr><tr id=\"descunderrow_".$row."\" class=\"recorded\">\n\t<td colspan=\"" . (6 + $recgroup_cols) . "\">".$show->description."</td>\n");
|
|---|
| 31 | ---
|
|---|
| 32 | > echo("</tr><tr id=\"descunderrow_".$row."\" class=\"recorded\">\n\t<td colspan=\"" . (6 + $recgroup_cols + $title_cols) . "\">".$show->description."</td>\n");
|
|---|
| 33 | 316c332
|
|---|
| 34 | < <td nowrap colspan="<?php echo 6 + ($_SESSION['recorded_descunder'] ? 0 : 1) + $recgroup_cols ?>" align="center">
|
|---|
| 35 | ---
|
|---|
| 36 | > <td nowrap colspan="<?php echo 6 + ($_SESSION['recorded_descunder'] ? 0 : 1) + $recgroup_cols + $title_cols ?>" align="center">
|
|---|