aboutsummaryrefslogtreecommitdiffstats
path: root/upgrade.php
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2012-04-07 20:59:33 +0000
committerplegall <plg@piwigo.org>2012-04-07 20:59:33 +0000
commit7f893c7b874f1030342c88be17bb39c930eefdbd (patch)
tree9a9090fb9fd34c45bba6cb71d0b96ed3756ddde1 /upgrade.php
parentd6991c658e716b6483bd2e90fd662365cf6933d8 (diff)
bug 2610 fixed: make sure the $_GET['lang'] or $_GET['language'] is in the
list of available languages. git-svn-id: http://piwigo.org/svn/branches/2.3@13955 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'upgrade.php')
-rw-r--r--upgrade.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/upgrade.php b/upgrade.php
index 43cf70b7a..ea0bbe516 100644
--- a/upgrade.php
+++ b/upgrade.php
@@ -154,6 +154,11 @@ $languages = new languages('utf-8');
if (isset($_GET['language']))
{
$language = strip_tags($_GET['language']);
+
+ if (!in_array($language, array_keys($languages->fs_languages)))
+ {
+ $language = PHPWG_DEFAULT_LANGUAGE;
+ }
}
else
{