summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorM. Voerman <rekordc@gmail.com>2014-08-03 14:37:32 +0200
committerM. Voerman <rekordc@gmail.com>2014-08-03 14:37:32 +0200
commitd4ee9f80d472807553a883f82620fa6d05dd870b (patch)
tree43091093ac85e64346178150095823a4b6271354 /index.html
parent7ff37b772ca04484a7c5a03c6b101449e4a0d4f7 (diff)
downloadvdr-vipclient-d4ee9f80d472807553a883f82620fa6d05dd870b.tar.gz
vdr-vipclient-d4ee9f80d472807553a883f82620fa6d05dd870b.tar.bz2
Fixed counting of max items in recording subgroup
Diffstat (limited to 'index.html')
-rw-r--r--index.html11
1 files changed, 6 insertions, 5 deletions
diff --git a/index.html b/index.html
index 7bbde80..0f99c2a 100644
--- a/index.html
+++ b/index.html
@@ -4368,7 +4368,7 @@ function MakeRecList_sublevel(GroupID) {
{
if (recGroup[i] == GroupID) {
Group_Header[GroupID] = recTitl[i][0];
- if (recTitl[i][2]) {
+ if (recTitl[i][2]) {
if (recTitl[i][1] != x) {
recList[i] = "\uE002\uE003" + recTitl[i][1];
@@ -4377,7 +4377,7 @@ function MakeRecList_sublevel(GroupID) {
recList[i] = "" ;
}
recSubGroup[i] = xx;
- } else {
+ } else {
recSubGroup[i] = 0;
var tmp = "";
for (var ii=1;ii<recTitl[i].length;ii++)
@@ -4395,10 +4395,11 @@ function MakeRecList_sublevel(GroupID) {
} else {
recList[i] = "\uE003" + result + tmp; //recTitl[i];
}
- MaxInGroup = MaxInGroup + 1;
- }
+ }
if ((recProt[i] == 1) && (ShowProtectedChannels == 1)) { recList[i] = "";}
- x = recTitl[i][1];
+ if (recList[i] != "") { MaxInGroup = MaxInGroup + 1; }
+ alert (MaxInGroup);
+ x = recTitl[i][1];
}
}
//MakeRecList_sublevel2(GroupID,0);