diff options
author | M. Voerman <rekordc@gmail.com> | 2013-08-18 01:02:37 +0200 |
---|---|---|
committer | M. Voerman <rekordc@gmail.com> | 2013-08-18 01:02:37 +0200 |
commit | fa6a6588f146169080937f47394b7eba29a6c239 (patch) | |
tree | 6cfb5e0fdaea49e2f3cc742a7a6e4c7ce54ad69e | |
parent | 1f9ad1c40bf489c87b1dcb524da2d7d4770b10f6 (diff) | |
download | vdr-vipclient-fa6a6588f146169080937f47394b7eba29a6c239.tar.gz vdr-vipclient-fa6a6588f146169080937f47394b7eba29a6c239.tar.bz2 |
fix - now right month is shown in recording menu
-rw-r--r-- | index.html | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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); |