diff options
author | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-01-07 17:28:34 +0000 |
---|---|---|
committer | Thomas Keil <tkeil (at) datacrystal (dot) de> | 2007-01-07 17:28:34 +0000 |
commit | 3f0d813e006c9e891b1995d6534d3c6c4fc076ec (patch) | |
tree | 29e201a42a012fdecf1b7b2729eda2ea6f93354b /pages | |
parent | 74e82b9acb1c3f67d518b085668e0d69fe4e0a35 (diff) | |
download | vdr-plugin-live-3f0d813e006c9e891b1995d6534d3c6c4fc076ec.tar.gz vdr-plugin-live-3f0d813e006c9e891b1995d6534d3c6c4fc076ec.tar.bz2 |
Fixed string stuff
Diffstat (limited to 'pages')
-rw-r--r-- | pages/whats_on.ecpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/pages/whats_on.ecpp b/pages/whats_on.ecpp index 3f12d84..039f898 100644 --- a/pages/whats_on.ecpp +++ b/pages/whats_on.ecpp @@ -18,10 +18,7 @@ type = "now"; cSchedulesLock schedulesLock; const cSchedules* Schedules = cSchedules::Schedules(schedulesLock); -if (type == "now") - std::string head(tr("What's running now")); -else - std::string head(tr("What's running at")+FormatDateTime(tr("%I:%M %p"), time(0))); +std::string head(tr("What's running at")+FormatDateTime(tr("%I:%M %p"), time(0))); }> <html> |