diff options
author | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-06 18:01:40 +0000 |
---|---|---|
committer | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-06 18:01:40 +0000 |
commit | e05144439c243c4aa765df1464da2e300c1375ae (patch) | |
tree | e08c841151559c0743390c58498ce3252d9ccd70 /pages | |
parent | 8a08fe2731a08e595530376a1a8856d851fc8f27 (diff) | |
download | vdr-plugin-live-e05144439c243c4aa765df1464da2e300c1375ae.tar.gz vdr-plugin-live-e05144439c243c4aa765df1464da2e300c1375ae.tar.bz2 |
- made PrintDay a static function call
Diffstat (limited to 'pages')
-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 efa2fcc..01d37f3 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->WeekDays() > 0 ? *timer->PrintDay(0, timer->WeekDays()) : FormatDateTime(tr("%a, %b %d"), timer->Day()) $></td> + <td><$ timer->WeekDays() > 0 ? *cTimer::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> |