diff options
author | patdenice <patdenice@piwigo.org> | 2012-06-07 10:52:43 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2012-06-07 10:52:43 +0000 |
commit | 9aa13bd5efd5ace215fa156fb12165153686312e (patch) | |
tree | 517cb9d4ae9345ccac7d09c493728b8d96da3a1c /include | |
parent | 1aaee9c88324d5d5eb45e53f80c1242e814631a3 (diff) |
Merged r15583 from trunk to branch 23
bug:2647
Test 1and1 server with $_SERVER['SCRIPT_FILENAME']
git-svn-id: http://piwigo.org/svn/branches/2.3@15584 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r-- | include/functions.inc.php | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/include/functions.inc.php b/include/functions.inc.php index 15baa8fef..f6b8303b6 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -1649,23 +1649,4 @@ function get_branch_from_version($version) { return implode('.', array_slice(explode('.', $version), 0, 2)); } - -/** - * return hostname with gethostbyaddr and keep it in database - */ -function get_host($force_update=false) -{ - global $conf; - - if (!isset($conf['host']) or $force_update) - { - $conf['host'] = 'undefined'; - if ($host = @gethostbyaddr($_SERVER['SERVER_ADDR'])) - { - $conf['host'] = $host; - } - conf_update_param('host', $conf['host']); - } - return $conf['host']; -} ?>
\ No newline at end of file |