aboutsummaryrefslogtreecommitdiffstats
path: root/admin/include/functions.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--admin/include/functions.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/admin/include/functions.php b/admin/include/functions.php
index 6058d09d6..a82cf5265 100644
--- a/admin/include/functions.php
+++ b/admin/include/functions.php
@@ -2054,24 +2054,4 @@ function get_fckb_tag_ids($raw_tags)
return $tag_ids;
}
-
-function get_hosting_technical_details()
-{
- global $conf;
-
- $details = array();
- if ($conf['send_hosting_technical_details'] and $_SERVER['HTTP_HOST'] != 'localhost')
- {
- $details = array(
- 'uuid' => hash_hmac('md5', get_absolute_root_url(), $conf['secret_key']),
- 'os' => PHP_OS,
- 'pwgversion' => PHPWG_VERSION,
- 'phpversion' => phpversion(),
- 'dbengine' => DB_ENGINE,
- 'dbversion' => pwg_get_db_version(),
- );
- }
-
- return $details;
-}
?>