summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Wieninger <cwieninger@gmx.de>2013-03-25 22:59:25 +0100
committerChristian Wieninger <cwieninger@gmx.de>2013-03-25 22:59:25 +0100
commitdd02e353512db5897ea329f12cf9e151f7ac6c86 (patch)
tree8a8dc51b6564d45e49b46d0f8093fc686c6dd1eb
parent9f594a48ab8ab07e1acd65b9c5641c9e26790828 (diff)
downloadvdr-plugin-epgsearch-dd02e353512db5897ea329f12cf9e151f7ac6c86.tar.gz
vdr-plugin-epgsearch-dd02e353512db5897ea329f12cf9e151f7ac6c86.tar.bz2
fixed evaluation of extended epg variables in expressions
l---------README2
-rw-r--r--epgsearch.c2
-rw-r--r--uservars.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/README b/README
index b16bb82..b18b191 120000
--- a/README
+++ b/README
@@ -1 +1 @@
-./doc/en/epgsearch.1.txt \ No newline at end of file
+README.git \ No newline at end of file
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);
}
}