]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Sidtochan option not showing on the front-end - this patch fixes that issue
authorNorm Dressler <norm@dressler.ca>
Tue, 18 Sep 2012 22:53:46 +0000 (18:53 -0400)
committerAdam Sutton <dev@adamsutton.me.uk>
Wed, 19 Sep 2012 08:49:49 +0000 (09:49 +0100)
src/webui/static/app/dvb.js

index 998074c17defb3828360680fca8e5b25229db9cc..36f614dd1b2bb4a413f34b64cbf88fb0921b03fb 100644 (file)
@@ -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({