mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-02 04:15:05 +02:00
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
This commit is contained in:
@@ -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(),
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user