summaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorChristian Wieninger <cwieninger (at) gmx (dot) de>2007-05-02 09:40:41 +0000
committerChristian Wieninger <cwieninger (at) gmx (dot) de>2007-05-02 09:40:41 +0000
commit084b8624f91d7251548842b9ae2441d42dcb95d7 (patch)
treeff2deeff8c6d3aef4c238400eaaf995449dd6568 /pages
parent21169f9b15bd971110490a572e5f6246a36e1d35 (diff)
downloadvdr-plugin-live-084b8624f91d7251548842b9ae2441d42dcb95d7.tar.gz
vdr-plugin-live-084b8624f91d7251548842b9ae2441d42dcb95d7.tar.bz2
- now using common time format
Diffstat (limited to 'pages')
-rw-r--r--pages/timers.ecpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/timers.ecpp b/pages/timers.ecpp
index e0d486b..0f20662 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"), timer->StartTime()) $></td>
- <td><$ FormatDateTime(tr("%I:%M"), timer->StopTime()) $></td>
+ <td><$ FormatDateTime(tr("%I:%M %p"), timer->StartTime()) $></td>
+ <td><$ FormatDateTime(tr("%I:%M %p"), 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")) &>></img></a></td>