Ticket #1028: mouseover_details_8605.diff
File mouseover_details_8605.diff, 1.6 KB (added by , 20 years ago) |
---|
-
mythweb/themes/default/tv/detail.php
186 186 echo " <div id=\"conflicting_shows\" class=\"clearfix\">\n ", 187 187 t('Possible conflicts with this show'), 188 188 ":\n <table>\n "; 189 190 // A program id counter for popup info 191 if (show_popup_info) { 192 $program_id_counter = 1; 193 } 194 189 195 foreach ($conflicting_shows as $show) { 190 196 // Set the class to be used to display the recording status character 191 197 $rec_class = implode(' ', array(recstatus_class($show), $show->recstatus)); … … 217 223 break; 218 224 } 219 225 220 // A program id counter for popup info221 if (show_popup_info) {222 $program_id_counter = 0;223 $program_id_counter++;224 }225 226 226 // Print the content 227 227 ?><tr class="<?php echo $class ?>"> 228 228 <td class="<?php echo $show->class ?>"><?php … … 244 244 ?></td> 245 245 <td><a href="<?php echo root ?>tv/channel/<?php echo $show->channel->chanid, '/', $show->starttime ?>"><?php echo $show->channel->channum, ' - ', $show->channel->name ?></a></td> 246 246 </tr><?php 247 $ row++;247 $program_id_counter++; 248 248 } 249 249 echo "\n </table>\n </div>"; 250 250 }