aboutsummaryrefslogtreecommitdiffstats
path: root/admin/languages_new.php
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2012-04-07 21:12:25 +0000
committerplegall <plg@piwigo.org>2012-04-07 21:12:25 +0000
commit237ce065b93e3f12cea31406e698bec4c146fca4 (patch)
treeab42fc9b76b503be68e43c5ecc54fe9ed2924da4 /admin/languages_new.php
parente40bcacc3eb84016a10ca23f928ec3efbbff822d (diff)
bug 2612 fixed: sanitize $_GET['installstatus'] before display for
themes/languages/plugins installation git-svn-id: http://piwigo.org/svn/branches/2.3@13961 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/languages_new.php')
-rw-r--r--admin/languages_new.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/admin/languages_new.php b/admin/languages_new.php
index 4c7804aa5..da0d31bfd 100644
--- a/admin/languages_new.php
+++ b/admin/languages_new.php
@@ -97,8 +97,9 @@ if (isset($_GET['installstatus']))
break;
default:
- array_push($page['errors'],
- sprintf(l10n('An error occured during extraction (%s).'), $_GET['installstatus'])
+ array_push(
+ $page['errors'],
+ sprintf(l10n('An error occured during extraction (%s).'), htmlspecialchars($_GET['installstatus']))
);
}
}