From 4f93a9cf3068165a776ed33b6e89ab3a9b6c2ae1 Mon Sep 17 00:00:00 2001 From: "M. Voerman" Date: Tue, 4 Jun 2013 11:07:52 +0200 Subject: small epginfo bug fix --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index abe2494..2d6ad0b 100644 --- a/index.html +++ b/index.html @@ -2785,7 +2785,7 @@ try { //Get channel number from recordings recDummy = recGUID[i].split("."); recDummy = recDummy[(recDummy.length-2)].split("-"); - recChan[i] = recDummy[0]; + recChan[i] = recDummy[0] + "\uE003-\uE003" + channelsnames[(recDummy[0])]; } else { //Media directory recChan[i] = "Media File"; @@ -3364,7 +3364,7 @@ function ShowInfo() { if (year!==1970) { osdepginfo.innerHTML = "
" + Left(recTitl[currMed],60) + "\n " + result + "\n " 
 					+ (recDura[currMed] / 60).toFixed(0) + " Minutes \n " + recChan[currMed] + "  " 
-					+ channelsnames[(recChan[currMed])] + "\n 

" + Left(recDesc[currMed],750) + "

"; + + "\n

" + Left(recDesc[currMed],750) + "

"; } else { //info for non-vdr recordings osdepginfo.innerHTML = "
" + Left(recTitl[currMed],60) + "\n \n 
"; -- cgit v1.2.3