diff options
author | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-01-03 23:39:43 +0000 |
---|---|---|
committer | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-01-03 23:39:43 +0000 |
commit | b52ba87fca5bcc41a7802b4ff6fb3e6d6c1db1fb (patch) | |
tree | 5b6437f93f95ad150937477fe1255c0601231901 /pages | |
parent | 4941f50c3f3a4e32e478e50bd86a70821623249c (diff) | |
download | vdr-plugin-live-b52ba87fca5bcc41a7802b4ff6fb3e6d6c1db1fb.tar.gz vdr-plugin-live-b52ba87fca5bcc41a7802b4ff6fb3e6d6c1db1fb.tar.bz2 |
Changes start/stop time to something sensible
Diffstat (limited to 'pages')
-rw-r--r-- | pages/timers.ecpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/timers.ecpp b/pages/timers.ecpp index 0031412..898a854 100644 --- a/pages/timers.ecpp +++ b/pages/timers.ecpp @@ -51,8 +51,8 @@ using namespace vdrlive; <td><img src="/<$ (timer->Flags() & 1) ? "active" : "inactive" $>.png" alt="Aktiv?" /></td> <td><$ timer->Channel()->Name() $></td> <td><$ FormatDateTime(tr("%a, %b %d"), timer->Day()) $></td> - <td><$ FormatDateTime(tr("%I:%M %p"), timer->Start()) $></td> - <td><$ FormatDateTime(tr("%I:%M %p"), timer->Stop()) $></td> + <td><$ FormatDateTime(tr("%I:%M %p"), timer->StartTime()) $></td> + <td><$ FormatDateTime(tr("%I:%M %p"), timer->StopTime()) $></td> <td><? (timer->Flags() & 8) ? "<img src=\"/record.png\" alt=\"Record\" />" ?></td> <td><$ timer->File() $></td> </tr> |