From 19d5659a8f6e1add15a3e85314f5677773cac76f Mon Sep 17 00:00:00 2001 From: rugk Date: Mon, 18 Jul 2016 13:11:15 +0200 Subject: [PATCH] Change array https://github.com/PrivateBin/PrivateBin/issues/41 Not tested locally, let's say what Travis says... :smile: --- lib/i18n.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/i18n.php b/lib/i18n.php index c788f2ea..b5670258 100644 --- a/lib/i18n.php +++ b/lib/i18n.php @@ -141,7 +141,7 @@ class i18n // check if the lang cookie was set and that language exists if (array_key_exists('lang', $_COOKIE) && in_array($_COOKIE['lang'], $availableLanguages)) { - $match = $_COOKIE['lang']; + $match = $availableLanguages[$_COOKIE['lang']]; } // find a translation file matching the browsers language preferences else