diff options
author | Christian Wieninger <cwieninger@gmx.de> | 2013-03-25 22:59:25 +0100 |
---|---|---|
committer | Christian Wieninger <cwieninger@gmx.de> | 2013-03-25 22:59:25 +0100 |
commit | dd02e353512db5897ea329f12cf9e151f7ac6c86 (patch) | |
tree | 8a8dc51b6564d45e49b46d0f8093fc686c6dd1eb | |
parent | 9f594a48ab8ab07e1acd65b9c5641c9e26790828 (diff) | |
download | vdr-plugin-epgsearch-dd02e353512db5897ea329f12cf9e151f7ac6c86.tar.gz vdr-plugin-epgsearch-dd02e353512db5897ea329f12cf9e151f7ac6c86.tar.bz2 |
fixed evaluation of extended epg variables in expressions
l--------- | README | 2 | ||||
-rw-r--r-- | epgsearch.c | 2 | ||||
-rw-r--r-- | uservars.h | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -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 @@ -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); } } |