commit 0106a56f7764797ea264de6ba7cdd6e6a7d7b806 parent f8d1e29e0ae11a5d9452fdaaaddabf1179edd34e Author: Julian Kirsch <kirschju@sec.in.tum.de> Date: Tue, 18 Nov 2014 17:19:42 +0100 Lang Diffstat:
| M | lang.js | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lang.js b/lang.js @@ -18,8 +18,9 @@ function get_default_lang() { for (l in navigator.languages) { for (j in ['en', 'de', 'fr']) { - if (l.search(j) != -1) + if (l.search(j) != -1) { return j; + } } }