From 3d7971d640da317829f79d06f04ea455152e01be Mon Sep 17 00:00:00 2001 From: patdenice Date: Thu, 7 Jun 2012 10:48:57 +0000 Subject: bug:2647 Test 1and1 server with $_SERVER['SCRIPT_FILENAME'] git-svn-id: http://piwigo.org/svn/trunk@15583 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/functions.inc.php | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'include/functions.inc.php') diff --git a/include/functions.inc.php b/include/functions.inc.php index 429dd3ccc..2096eb79f 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -1692,23 +1692,4 @@ function mobile_theme() return $is_mobile_theme; } - -/** - * 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 -- cgit v1.2.3