summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorM. Voerman <rekordc@gmail.com>2013-08-18 01:02:37 +0200
committerM. Voerman <rekordc@gmail.com>2013-08-18 01:02:37 +0200
commitfa6a6588f146169080937f47394b7eba29a6c239 (patch)
tree6cfb5e0fdaea49e2f3cc742a7a6e4c7ce54ad69e
parent1f9ad1c40bf489c87b1dcb524da2d7d4770b10f6 (diff)
downloadvdr-vipclient-fa6a6588f146169080937f47394b7eba29a6c239.tar.gz
vdr-vipclient-fa6a6588f146169080937f47394b7eba29a6c239.tar.bz2
fix - now right month is shown in recording menu
-rw-r--r--index.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/index.html b/index.html
index 48129dc..a9dd09c 100644
--- a/index.html
+++ b/index.html
@@ -20,7 +20,7 @@
//
//
-var Version = "0.21"
+var Version = "0.22.1"
for (var x = 0; x < 10; x++) {
searchtimers[x] = "" ; // To solve displaying undefined
@@ -1503,6 +1503,10 @@ function StreamInfo(si) {
is.setObject("cfg.locale.ui","DEU",is.STORAGE_VOLATILE);
}
+ if(SI[1]=="3" && SI[2]=="3212" && ( SI[3]=="14052" || SI[3]=="14055" ) ) {
+ is.setObject("cfg.locale.ui","CZE",is.STORAGE_VOLATILE);
+ }
+
if(SI[1]=="3" && ( SI[2]=="3205" || SI[2]=="3209" || SI[2]=="3210" || SI[2]=="3221" || SI[2]=="3219" )) {
@@ -3233,7 +3237,7 @@ function AddInfo(info) {
d = date.getDate();
h = date.getHours();
m = date.getMinutes();
- month=addzero(month);
+ month=addzero(month + 1);
d=addzero(d);
h=addzero(h);
m=addzero(m);