Skip to content

Commit

Permalink
Merge pull request #81 from arobro/master
Browse files Browse the repository at this point in the history
Add Episode Number to hover
  • Loading branch information
stuarta committed May 4, 2022
2 parents f4bf29d + 73761dd commit e533158
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions modules/tv/classes/Program.php
Expand Up @@ -509,6 +509,12 @@ public function details_list() {
."\t<dd>".html_entities($this->airdate)
."</dd>\n";
}
// Episode Number
if (!empty($this->syndicatedepisodenumber)) {
$str .= "\t<dt>".t('Episode Number').":</dt>\n"
."\t<dd>".html_entities($this->syndicatedepisodenumber)
."</dd>\n";
}
// Category
if (preg_match('/\\S/', $this->category)) {
$str .= "\t<dt>".t('Category').":</dt>\n"
Expand Down

0 comments on commit e533158

Please sign in to comment.