diff options
author | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-05 22:23:44 +0000 |
---|---|---|
committer | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-05 22:23:44 +0000 |
commit | 1101d20f95fc86e0e1e20e69467cb152632b4fc4 (patch) | |
tree | 405ff8ef4651a2e600e70cc9aafcb39d3621c3e2 | |
parent | 549a8ee8dc07767ca19e89ff828b35c246b36697 (diff) | |
download | vdr-plugin-live-1101d20f95fc86e0e1e20e69467cb152632b4fc4.tar.gz vdr-plugin-live-1101d20f95fc86e0e1e20e69467cb152632b4fc4.tar.bz2 |
- added weekday display
-rw-r--r-- | pages/timers.ecpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/timers.ecpp b/pages/timers.ecpp index 7c07fe6..efa2fcc 100644 --- a/pages/timers.ecpp +++ b/pages/timers.ecpp @@ -55,7 +55,7 @@ using namespace vdrlive; <td><button type="button" class="smallbutton" onclick="location.href='edit_timer.html?timerid=<$ timers.GetTimerId(*timer) $>';"><$ tr("Edit") $></button></td> <td><img src="/<$ (timer->Flags() & tfActive) ? "active" : "inactive" $>.png" alt="Aktiv?" /></td> <td><$ timer->Channel()->Name() $></td> - <td><$ timer->Day() > 0 ? FormatDateTime(tr("%a, %b %d"), timer->Day()) : " " $></td> + <td><$ timer->WeekDays() > 0 ? *timer->PrintDay(0, timer->WeekDays()) : FormatDateTime(tr("%a, %b %d"), timer->Day()) $></td> <td><$ FormatDateTime(tr("%I:%M %p"), timer->StartTime()) $></td> <td><$ FormatDateTime(tr("%I:%M %p"), timer->StopTime()) $></td> <td><{ if (timer->Flags() & 8) { }><img src="/record.png" alt="Record" /><{ } }></td> |