diff options
author | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-01-04 16:38:39 +0000 |
---|---|---|
committer | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-01-04 16:38:39 +0000 |
commit | 04352dd5ca5d44ebd57dae98cd055305c99567d0 (patch) | |
tree | b4fa3e6d11927f87c55f7ec4454fc3486909f40e /pages | |
parent | db34688e41811a7e66e21ae31e498c9c573d2b1a (diff) | |
download | vdr-plugin-live-04352dd5ca5d44ebd57dae98cd055305c99567d0.tar.gz vdr-plugin-live-04352dd5ca5d44ebd57dae98cd055305c99567d0.tar.bz2 |
Fixed bug with recording-image
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 f77f8c9..3c54335 100644 --- a/pages/timers.ecpp +++ b/pages/timers.ecpp @@ -3,7 +3,7 @@ #include <vdr/timers.h> #include <vdr/config.h> #include <vdr/i18n.h> -#include "sortedtimers.h" +#include "timers.h" #include "tools.h" using namespace vdrlive; @@ -53,7 +53,7 @@ using namespace vdrlive; <td><$ 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><? (timer->Flags() & 8) ? "<img src=\"/record.png\" alt=\"Record\" />" ?></td> + <td><{ if (timer->Flags() & 8) { }><img src="/record.png" alt="Record" /><{ } }></td> <td><$ timer->File() $></td> </tr> <{ |