diff options
| author | Andreas Brachold <vdr07@deltab.de> | 2007-12-16 14:37:56 +0000 |
|---|---|---|
| committer | Andreas Brachold <vdr07@deltab.de> | 2007-12-16 14:37:56 +0000 |
| commit | e74bdb7184b4e72ae58c5175464ef6a3db96aff7 (patch) | |
| tree | 48b6c98ce3b2c5fd55a94f038c354b7f7e5bc42b /html/javascript | |
| parent | 26868547aed93bdba91157faa30db80db06573ba (diff) | |
| download | xxv-e74bdb7184b4e72ae58c5175464ef6a3db96aff7.tar.gz xxv-e74bdb7184b4e72ae58c5175464ef6a3db96aff7.tar.bz2 | |
* VTX: Embedded vtx-font inside module, drop graphics from VTXPATH
* HTTPD: remove binary from url as parameter, now defined at cmdobj, inside modul header
* EPG: rename VPS to PDC, Programme Delivery Control
* tools: add con_err,con_msg to dump message on console and log file
* RECORDS: Show message after editing recording
* MUSIC: remove proxy from playlist building, use proxy only to playing files
Diffstat (limited to 'html/javascript')
| -rw-r--r-- | html/javascript/global.js | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/html/javascript/global.js b/html/javascript/global.js index 7a0e82f..a05b873 100644 --- a/html/javascript/global.js +++ b/html/javascript/global.js @@ -113,7 +113,7 @@ function reverse(form) { } } -function Play(warnmsg,form,proxy) { +function Play(warnmsg,form) { // test on checked Boxes ok = new Array; x = 0; @@ -126,10 +126,7 @@ function Play(warnmsg,form,proxy) { } } if(x > 0) { - var url = ""; - if(proxy != "") - url = proxy; - url = url + '?cmd=mplaylist&data=' + ok.join('_') + '&binary=1'; + var url = '?cmd=mplaylist&data=' + ok.join('_'); location.href = url; } else { alert(warnmsg); |
