summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--epgsearch.c2
-rw-r--r--uservars.h2
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
diff --git a/uservars.h b/uservars.h
index 56ccb04..f098750 100644
--- a/uservars.h
+++ b/uservars.h
@@ -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);
}
}