diff options
-rw-r--r-- | epgsearch.c | 2 | ||||
-rw-r--r-- | uservars.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/epgsearch.c b/epgsearch.c index bb84fb6..1214685 100644 --- a/epgsearch.c +++ b/epgsearch.c @@ -69,7 +69,7 @@ The project's page is at http://winni.vdr-developer.org/epgsearch #include "confdloader.h" #include "pending_notifications.h" -static const char VERSION[] = "1.0.1.beta3"; +static const char VERSION[] = "1.0.1.beta4"; static const char DESCRIPTION[] = trNOOP("search the EPG for repeats and more"); // globals @@ -834,7 +834,7 @@ class cUserVars : public cList<cUserVar> { string varName = SearchExtCat->name; std::transform(varName.begin(), varName.end(), varName.begin(), tolower); cExtEPGVar* extEPGVar = new cExtEPGVar(varName); - extEPGVars[varName] = extEPGVar; + extEPGVars[extEPGVar->Name()] = extEPGVar; SearchExtCat = SearchExtCats.Next(SearchExtCat); } } |