From 5e97efc8a59b5d7a177dd2d7e901082826f1c7f6 Mon Sep 17 00:00:00 2001 From: Norm Dressler Date: Tue, 18 Sep 2012 18:53:46 -0400 Subject: [PATCH] Sidtochan option not showing on the front-end - this patch fixes that issue --- src/webui/static/app/dvb.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/webui/static/app/dvb.js b/src/webui/static/app/dvb.js index 998074c1..36f614dd 100644 --- a/src/webui/static/app/dvb.js +++ b/src/webui/static/app/dvb.js @@ -1156,10 +1156,12 @@ tvheadend.dvb_adapter_general = function(adapterData, satConfStore) { fieldLabel : 'Turn off LNB when idle', name : 'poweroff' }); - new Ext.form.Checkbox({ + items.push(v); + v = new Ext.form.Checkbox({ fieldLabel : 'Use SID as channel number during mapping', name : 'sidtochan' - }), items.push(v); + }), + items.push(v); } var confform = new Ext.FormPanel({