diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-12-04 18:44:36 +0100 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-12-04 18:44:36 +0100 |
commit | 1adde56cbfb3fd20736650c4a35e351272545b0d (patch) | |
tree | 9a90c2a455cb91f467e381ee4f5eae601ca576a1 /pages | |
parent | 2433893b7249f62dcd94f4f89b3a7c7b1fc36ae2 (diff) | |
download | vdr-plugin-live-1adde56cbfb3fd20736650c4a35e351272545b0d.tar.gz vdr-plugin-live-1adde56cbfb3fd20736650c4a35e351272545b0d.tar.bz2 |
updated search timer editing to match epgsearch-0.9.25.beta7 (recommended, but not required)
Diffstat (limited to 'pages')
-rw-r--r-- | pages/edit_searchtimer.ecpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/pages/edit_searchtimer.ecpp b/pages/edit_searchtimer.ecpp index 88f3718..fbd2cce 100644 --- a/pages/edit_searchtimer.ecpp +++ b/pages/edit_searchtimer.ecpp @@ -67,7 +67,7 @@ using namespace vdrlive; int allowedrepeats = 0; int repeatswithindays = 0; bool comparetitle = false; - bool comparesubtitle = false; + int comparesubtitle = 0; bool comparesummary = false; unsigned avoidrepeatscatselected[]; int priority = 0; @@ -808,7 +808,10 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html"); <tr> <td class="label"><div class="withmargin"><$ tr("Compare subtitle" ) $>:</div></td> - <td><input type="checkbox" name="comparesubtitle" value="1" <{ CHECKIF(comparesubtitle) }>/> + <td><select name="comparesubtitle" size="1" id="comparesubtitle"> + <option value="0" <{ SELECTIF(comparesubtitle == 0) }> ><$ trVDR("no") $></option> + <option value="1" <{ SELECTIF(comparesubtitle == 1) }> ><$ trVDR("yes") $></option> + <option value="2" <{ SELECTIF(comparesubtitle == 2) }> ><$ tr("if present") $></option></select> </tr> <tr> |