aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorpatdenice <patdenice@piwigo.org>2010-12-14 13:04:33 +0000
committerpatdenice <patdenice@piwigo.org>2010-12-14 13:04:33 +0000
commitbf1aa6fcf1f6d9038a0723e4f0213e416ec5ee62 (patch)
tree66087517c8fd66644ec8d9780923fc406721d9de /admin
parent549b6e0507cce14192670645ec1f4be43aa205a7 (diff)
merge r8124 from branch 2.1 to trunk
feature 2048: remove urlencode for technicals details (already escaped with http_build_query). git-svn-id: http://piwigo.org/svn/trunk@8125 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin')
-rw-r--r--admin/include/functions.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/admin/include/functions.php b/admin/include/functions.php
index 81723ad9f..6058d09d6 100644
--- a/admin/include/functions.php
+++ b/admin/include/functions.php
@@ -2064,11 +2064,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(),
);
}