taler-www

Main taler.net website
Log | Files | Refs | Submodules | README | LICENSE

commit f8d1e29e0ae11a5d9452fdaaaddabf1179edd34e
parent 4bf637cfc66e6720bcf4c215994bb6c4f116ad72
Author: Julian Kirsch <kirschju@sec.in.tum.de>
Date:   Tue, 18 Nov 2014 17:12:52 +0100

Lang

Diffstat:
Mlang.js | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lang.js b/lang.js @@ -27,11 +27,11 @@ function get_default_lang() } function loadLang() { - l = ''; + l = 'null'; if (supports_html5_storage()) { l = sessionStorage.getItem('lang'); } - if (l == '') l = get_default_lang(); + if (l == 'null') l = get_default_lang(); setLang(l); }