diff options
author | Andreas Mair <andreas@vdr-developer.org> | 2011-09-12 13:08:05 +0200 |
---|---|---|
committer | Andreas Mair <andreas@vdr-developer.org> | 2011-09-12 13:08:05 +0200 |
commit | afbd31056f973acc65edb60d1c9e926c81944c04 (patch) | |
tree | 7ff757d496f8ec7aeb68b76e595d26223ac151a0 | |
parent | 88a2901f27cdefe18e3ffd29086319f94dbf192c (diff) | |
download | vdradmin-am-afbd31056f973acc65edb60d1c9e926c81944c04.tar.gz vdradmin-am-afbd31056f973acc65edb60d1c9e926c81944c04.tar.bz2 |
Disabling "Ignore missing categories" didn't work (closes #697).
-rwxr-xr-x | vdradmind.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vdradmind.pl b/vdradmind.pl index ce18897..625912a 100755 --- a/vdradmind.pl +++ b/vdradmind.pl @@ -2994,7 +2994,7 @@ sub epgsearch_Param2Line { . $q->param("del_after_days") . ":" . $searchtimer_from . ":" . $searchtimer_until . ":" - . $q->param("ignore_missing_epgcats"); + . ($q->param("ignore_missing_epgcats") ? "1" : "0"); if ($FEATURES{EPGSEARCH_VERSION} >= 925) { $cmd .= ":" . $q->param("unmute") . ":" |