summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY1
-rw-r--r--common.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index a9aaab5..1409166 100644
--- a/HISTORY
+++ b/HISTORY
@@ -8,6 +8,7 @@ VDR Plugin 'text2skin' Revision History
- Documentation fixes.
- Commit t2s_rerunandtab.diff by tomas@vdr-portal.de
http://www.vdr-portal.de/board17-developer/board25-patches/p914968-patch-f%C3%BCr-text2skin-channelnames4reruns/#post914968
+- Commit common_c.diff most probably by Christian Winninger (unknown source)
2011-11-06: Version 1.3.2
diff --git a/common.c b/common.c
index a3f03fa..5d1c058 100644
--- a/common.c
+++ b/common.c
@@ -170,13 +170,13 @@ std::string AddExtInfoToDescription(const char *Title, const char *ShortText, co
if (cPluginManager::CallFirstService("Epgsearch-searchresults-v1.0", &data)) {
cList<Epgsearch_searchresults_v1_0::cServiceSearchResult>* list = data.pResultList;
if (list) {
- // die aktuelle Sendung wird noch als WH angezeigt !!!
if (!desc.str().empty()) desc << "\n";
desc << tr("RERUNS OF THIS SHOW") << ":\n";
int i = 0;
for (Epgsearch_searchresults_v1_0::cServiceSearchResult *r =
list->First(); r && i < 5; r = list->Next(r)) {
i++;
+ if (r->event && r->event->StartTime() < time(NULL)) continue;
std::stringstream buf;
cChannel *channel = Channels.GetByChannelID(r->event->ChannelID(), true, true);
if (channel)