diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | common.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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 @@ -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) |