From: Jaroslav Kysela Date: Thu, 18 Jun 2015 12:59:05 +0000 (+0200) Subject: intl: fix wrong js change X-Git-Tag: v4.2.1~2313 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=77de79fb7c84d8209ebed0463e279baabddcd440;p=thirdparty%2Ftvheadend.git intl: fix wrong js change --- diff --git a/src/webui/static/app/tvheadend.js b/src/webui/static/app/tvheadend.js index 428f048cf..b4fd2fedf 100644 --- a/src/webui/static/app/tvheadend.js +++ b/src/webui/static/app/tvheadend.js @@ -541,7 +541,7 @@ tvheadend.RootTabPanel = Ext.extend(Ext.TabPanel, { }, onLoginCmdClicked: function(e) { - window.location.href = this.login ? _('logout') : _('login'); + window.location.href = this.login ? 'logout' : 'login'; } });