Skip to content

Commit

Permalink
Update mythweb for protocol 79
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartm committed Nov 11, 2013
1 parent 73a3ded commit 61f14b9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/tv/classes/Program.php
Expand Up @@ -128,6 +128,7 @@ public function __construct($data) {
$this->year = $data[45];
$this->partnumber = $data[46];
$this->parttotal = $data[47];
$this->category_type = $data[48];
// Is this a previously-recorded program?
if (!empty($this->filename)) {
$this->url = video_url($this); // get download info
Expand Down Expand Up @@ -344,7 +345,7 @@ public function backend_row() {
$this->description , // 02 description
$this->season , // 03 season
$this->episode , // 04 episode
$this->total_episodes , // XXX
$this->total_episodes , // XXX
$this->syndicatedepisodenumber, // 05 syndicatedepisode
$this->category , // 06 category
$this->chanid , // 07 chanid
Expand Down Expand Up @@ -390,6 +391,7 @@ public function backend_row() {
$this->year , // 44 year
$this->partnumber , // 45 partnumber
$this->parttotal , // 46 parttotal
$this->category_type , // 48 category type
)
);
}
Expand Down

0 comments on commit 61f14b9

Please sign in to comment.