From a0a26513ff6c1b4cdc597d0bf944e04dccd95c3e Mon Sep 17 00:00:00 2001 From: Piotr Kuchciak Date: Wed, 19 Nov 2014 13:53:18 +0100 Subject: [PATCH] WEBUI EPG: small fix name --- src/webui/static/app/epg.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webui/static/app/epg.js b/src/webui/static/app/epg.js index ace3a96f..36a36318 100644 --- a/src/webui/static/app/epg.js +++ b/src/webui/static/app/epg.js @@ -106,7 +106,7 @@ tvheadend.epgDetails = function(event) { if (event.start) content += '
Start Time:
' + tvheadend.niceDate(event.start) + '
'; if (event.stop) - content += '
Stop Time:
' + tvheadend.niceDate(event.stop) + '
'; + content += '
End Time:
' + tvheadend.niceDate(event.stop) + '
'; if (duration) content += '
Duration:
' + parseInt(duration / 60) + ' min
'; if (event.summary)