diff options
author | patdenice <patdenice@piwigo.org> | 2010-12-14 13:01:18 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2010-12-14 13:01:18 +0000 |
commit | a0134e40783445c9b309b9d83b2e6ac8f374b301 (patch) | |
tree | 0504c133ef8d124297255fbef1ee312d3a98f9e0 /admin/include/functions.php | |
parent | 6e5391dc18112211bef958901fae6873ea33df0b (diff) |
feature 2048: remove urlencode for technicals details (already escaped with http_build_query).
git-svn-id: http://piwigo.org/svn/branches/2.1@8124 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/include/functions.php')
-rw-r--r-- | admin/include/functions.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/admin/include/functions.php b/admin/include/functions.php index 137778ce4..13c4092b1 100644 --- a/admin/include/functions.php +++ b/admin/include/functions.php @@ -2046,11 +2046,11 @@ function get_hosting_technical_details() { $details = array( 'uuid' => hash_hmac('md5', get_absolute_root_url(), $conf['secret_key']), - 'os' => urlencode(PHP_OS), - 'pwgversion' => urlencode(PHPWG_VERSION), - 'phpversion' => urlencode(phpversion()), - 'dbengine' => urlencode(DB_ENGINE), - 'dbversion' => urlencode(pwg_get_db_version()), + 'os' => PHP_OS, + 'pwgversion' => PHPWG_VERSION, + 'phpversion' => phpversion(), + 'dbengine' => DB_ENGINE, + 'dbversion' => pwg_get_db_version(), ); } |