summaryrefslogtreecommitdiff
path: root/skins/xstyle/javascript
diff options
context:
space:
mode:
authorAndreas Brachold <vdr07@deltab.de>2007-12-16 14:39:19 +0000
committerAndreas Brachold <vdr07@deltab.de>2007-12-16 14:39:19 +0000
commit3aeb4f5cb42acb961b6c128ec4cbf23f397ae2f8 (patch)
treef97571bf0bb73a8594d49723921458c711e2fe1e /skins/xstyle/javascript
parent8c7d1a9be9582362eb86aeffaa082f13e7ac76bc (diff)
downloadxxv-3aeb4f5cb42acb961b6c128ec4cbf23f397ae2f8.tar.gz
xxv-3aeb4f5cb42acb961b6c128ec4cbf23f397ae2f8.tar.bz2
* MUSIC: remove proxy from playlist building, use proxy only to playing files
* EPG: rename VPS to PDC, Programme Delivery Control
Diffstat (limited to 'skins/xstyle/javascript')
-rw-r--r--skins/xstyle/javascript/global.js7
1 files changed, 2 insertions, 5 deletions
diff --git a/skins/xstyle/javascript/global.js b/skins/xstyle/javascript/global.js
index 73a8f42..9d69317 100644
--- a/skins/xstyle/javascript/global.js
+++ b/skins/xstyle/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 != 0)
- url = proxy;
- url = url + '?cmd=mplaylist&data=' + ok.join('_') + '&binary=1';
+ var url = '?cmd=mplaylist&data=' + ok.join('_');
location.href = url;
} else {
alert(warnmsg);