diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-01-07 16:29:50 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-01-07 16:29:50 +0000 |
| commit | 6bf2f1a4c1980a402631713a53268fa2da8d916a (patch) | |
| tree | 30ceafdeb7192a27b342ec5fa506b367d65bb707 /lib/python/Components | |
| parent | 1c5637e71a4565181064cc0e00dac36fb113bf08 (diff) | |
| download | enigma2-6bf2f1a4c1980a402631713a53268fa2da8d916a.tar.gz enigma2-6bf2f1a4c1980a402631713a53268fa2da8d916a.zip | |
small fix
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/ParentalControl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/ParentalControl.py b/lib/python/Components/ParentalControl.py index b9c31c4b..4bf18067 100644 --- a/lib/python/Components/ParentalControl.py +++ b/lib/python/Components/ParentalControl.py @@ -63,7 +63,7 @@ class ParentalControl: self.serviceLevel.remove(service) def isServicePlayable(self, service, callback): - if not config.ParentalControl.configured.value: + if not config.ParentalControl.configured.value or not config.ParentalControl.setuppinactive.value: return True #print "whitelist:", self.whitelist #print "blacklist:", self.blacklist |
