Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WebUI: fix capitalisation of getTotalCount function - fixes #3180
  • Loading branch information
ProfYaffle authored and perexg committed Oct 20, 2015
1 parent d7cf558 commit 29a610f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui/static/app/epg.js
Expand Up @@ -1021,7 +1021,7 @@ tvheadend.epg = function() {
+ '<div class="x-smallhdr">' + _('Genre') + ':</div>' + contentType + '<br>'
+ '<div class="x-smallhdr">' + _('Duration') + ':</div>' + duration + '<br>'
+ '<br><br>'
+ sprintf(_('Currently this will match (and record) %d events.'), epgStore.GetTotalCount())
+ sprintf(_('Currently this will match (and record) %d events.'), epgStore.getTotalCount())
+ ' ' + 'Are you sure?',
function(button) {
if (button === 'no')
Expand Down

0 comments on commit 29a610f

Please sign in to comment.