diff options
-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> |