Opened 12 years ago

Closed 12 years ago

#10274 closed Bug Report - General (Fixed)

mythtv fails to show recording details

Reported by: furti@… Owned by: Rob Smith
Priority: minor Milestone: 0.26
Component: Plugin - MythWeb Version: Master Head
Severity: medium Keywords:
Cc: Ticket locked: no

Description

clicking on a recording in the recorded programs list redirects to the listing page which errors out the program could not be found.

it seems this happens since mythweb was converted to UTC. commit:e9e99daf2fae331d24f940d249fbf476873fb55a

the problem was fixed for my with the attached patch

Attachments (2)

fix.patch (749 bytes) - added by furti@… 12 years ago.
fix.2.patch (791 bytes) - added by furti@… 12 years ago.

Download all attachments as: .zip

Change History (4)

Changed 12 years ago by furti@…

Attachment: fix.patch added

Changed 12 years ago by furti@…

Attachment: fix.2.patch added

comment:1 Changed 12 years ago by dekarl@…

worksforme

I think this has been fixed in [ee941bef6d55a0381a93eb50c3a4833dc5278f8f]

 /**
  * Converts a unix timestamp into a myth timestamp
 /**/
     function unix2mythtime($time) {
-        return date('Y-m-d\TH:i:s', $time);
-    }
-
-/**
- * Converts a unix timestamp into a myth timestamp
-/**/
-    function unix2gmtmythtime($time) {
         return gmdate('Y-m-d\TH:i:s', $time);
     }

comment:2 Changed 12 years ago by beirdo

Milestone: unknown0.26
Resolution: Fixed
Status: newclosed
Note: See TracTickets for help on using tickets.