From fa6a6588f146169080937f47394b7eba29a6c239 Mon Sep 17 00:00:00 2001 From: "M. Voerman" Date: Sun, 18 Aug 2013 01:02:37 +0200 Subject: fix - now right month is shown in recording menu --- index.html | 8 ++++++-- 1 file 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); -- cgit v1.2.3