diff options
author | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-04-29 17:30:22 +0000 |
---|---|---|
committer | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-04-29 17:30:22 +0000 |
commit | c23da7907f180eed81032e1f63e1421f2b39cb61 (patch) | |
tree | f81b8c719f650fe8c7cfbd38a0b6de58dc7a36a1 /pages | |
parent | 49bbfb3681c86dcb1045844881acf42f9ccf4b7a (diff) | |
download | vdr-plugin-live-c23da7907f180eed81032e1f63e1421f2b39cb61.tar.gz vdr-plugin-live-c23da7907f180eed81032e1f63e1421f2b39cb61.tar.bz2 |
Removed %p so that displaying of times gets uniform
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 b90fc1a..db45dd6 100644 --- a/pages/timers.ecpp +++ b/pages/timers.ecpp @@ -97,8 +97,8 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html"); <td class="border" style="border-left: 1px solid black"></td> <td><{ if (timer->Flags() & tfActive) { }><img src="/arrow.png" alt=""></img> <{ } }></td> <td><$ timer->Channel()->Name() $></td> - <td><$ FormatDateTime(tr("%I:%M %p"), timer->StartTime()) $></td> - <td><$ FormatDateTime(tr("%I:%M %p"), timer->StopTime()) $></td> + <td><$ FormatDateTime(tr("%I:%M"), timer->StartTime()) $></td> + <td><$ FormatDateTime(tr("%I:%M"), timer->StopTime()) $></td> <td><{ if (timer->Recording()) { }><img src="/record.png" alt="Record" /><{ } }></td> <td><$ timer->File() $></td> <td><a href="timers.html?timerid=<$ timers.GetTimerId(*timer) $>&action=toggle"><img src="/<$ (timer->Flags() & tfActive) ? "active" : "inactive" $>.png" alt="" <& tooltip.hint text=(tr("Toggle timer active/inactive")) &>/></a></td> |