Ignore:
Timestamp:
Dec 22, 2010, 10:57:50 PM (13 years ago)
Author:
plg
Message:

feature 2048 removed (and was never released): no data are sent anonymously to piwigo.org for statistics purpose

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/include/functions.php

    r8125 r8238  
    20552055  return $tag_ids;
    20562056}
    2057 
    2058 function get_hosting_technical_details()
    2059 {
    2060   global $conf;
    2061 
    2062   $details = array();
    2063   if ($conf['send_hosting_technical_details'] and $_SERVER['HTTP_HOST'] != 'localhost')
    2064   {
    2065     $details = array(
    2066       'uuid' => hash_hmac('md5', get_absolute_root_url(), $conf['secret_key']),
    2067       'os' => PHP_OS,
    2068       'pwgversion' => PHPWG_VERSION,
    2069       'phpversion' => phpversion(),
    2070       'dbengine' => DB_ENGINE,
    2071       'dbversion' => pwg_get_db_version(),
    2072     );
    2073   }
    2074 
    2075   return $details;
    2076 }
    20772057?>
Note: See TracChangeset for help on using the changeset viewer.