aboutsummaryrefslogtreecommitdiffstats
path: root/admin/include/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/include/functions.php')
-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(),
);
}