summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMidas <vdrportal_midas@gmx.de>2013-04-02 01:40:05 +0200
committerMidas <vdrportal_midas@gmx.de>2013-04-02 01:40:05 +0200
commit4720d203c979e19989038301bec5bf3fa78808a6 (patch)
treeccbde70d2fb19ebc8092e7b1b79533e822154202
parent577d7cb62b5303ddf48c1782aef330efb44b241e (diff)
downloadvdr-plugin-block-master.tar.gz
vdr-plugin-block-master.tar.bz2
Fixed a critical bug that prevented the 'DVB rating' item from being shown in setup.HEADmaster
-rw-r--r--block.c2
-rw-r--r--setup.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/block.c b/block.c
index 9a940f5..a8055b6 100644
--- a/block.c
+++ b/block.c
@@ -20,7 +20,7 @@
#include <fstream>
using namespace std;
-static const char *VERSION = "0.1.2~201301261121dev";
+static const char *VERSION = "0.1.2~201304020120dev";
static const char *DESCRIPTION = trNOOP("Block unwanted shows by EPG title");
static const char *MAINMENUENTRY = trNOOP("(De)Block broadcast");
diff --git a/setup.c b/setup.c
index 197bd60..f5abfcf 100644
--- a/setup.c
+++ b/setup.c
@@ -48,7 +48,7 @@ void cMenuSetupBlock::Set(void) {
Add(methoditem);
Add(okitem);
Add(whitelistitem);
- if (VDRVERSNUM < 10711) Add(dvbratingitem);
+ if (VDRVERSNUM > 10711) Add(dvbratingitem);
//TODO translation, setup menü einrichten ->define mit if versehen für ein/ausblenden von options? variablen deklarieren
item = new cOsdItem("");
item->SetSelectable(false);