summaryrefslogtreecommitdiff
path: root/http/src/js
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2017-03-12 14:09:31 +0100
committerhorchi <vdr@jwendel.de>2017-03-12 14:09:31 +0100
commit01c04a4124a98183bd6294d8f52431ff0b2dab45 (patch)
tree9df762ffc825d566ae1e68fe6d65e6c88177d199 /http/src/js
parent21057136ae42ea59022d87f3e5d83c55c4cca074 (diff)
downloadvdr-epg-daemon-01c04a4124a98183bd6294d8f52431ff0b2dab45.tar.gz
vdr-epg-daemon-01c04a4124a98183bd6294d8f52431ff0b2dab45.tar.bz2
2017-03-12: version 1.1.108 (rechner)\n - bugfix: namingmode searchtimer shows always 10 instead of template\n \n1.1.108
Diffstat (limited to 'http/src/js')
-rw-r--r--http/src/js/5_timerDialog.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/http/src/js/5_timerDialog.js b/http/src/js/5_timerDialog.js
index 550b483..ad13bce 100644
--- a/http/src/js/5_timerDialog.js
+++ b/http/src/js/5_timerDialog.js
@@ -445,7 +445,7 @@ epgd.searchTimerDialog.prototype.render = function (t) {
form.tChFormat.value = t.chformat || (t.id ? '' : epgd.profile.chFormat);
form.tNameMode.defaultIndex = parseInt(t.category == 'Serie' ? epgd.profile.namingModeSearchSerie : epgd.profile.namingModeSearchMovie, 10);
form.tNameMode.selectedIndex = typeof t.namingmode == "undefined" ? form.tNameMode.defaultIndex : t.namingmode;
- form.tTemplate.value = typeof t.template == "undefined" ? (t.category == 'Serie' ? epgd.profile.namingModeSearchSerieTemplate : epgd.profile.namingModeSearchMovieTemplate) : 10;
+ form.tTemplate.value = typeof t.template == "undefined" ? (t.category == 'Serie' ? epgd.profile.namingModeSearchSerieTemplate : epgd.profile.namingModeSearchMovieTemplate) : t.template;
$(form.tNameMode).change();
this.$win.parent().find('#tBCopy').toggle(!!t.id);
};