Changeset 15583 for trunk/include


Ignore:
Timestamp:
Jun 7, 2012, 12:48:57 PM (12 years ago)
Author:
patdenice
Message:

bug:2647
Test 1and1 server with $_SERVERSCRIPT_FILENAME

File:
1 edited

Legend:

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

    r15575 r15583  
    16931693  return $is_mobile_theme;
    16941694}
    1695 
    1696 /**
    1697  * return hostname with gethostbyaddr and keep it in database
    1698  */
    1699 function get_host($force_update=false)
    1700 {
    1701   global $conf;
    1702 
    1703   if (!isset($conf['host']) or $force_update)
    1704   {
    1705     $conf['host'] = 'undefined';
    1706     if ($host = @gethostbyaddr($_SERVER['SERVER_ADDR']))
    1707     {
    1708       $conf['host'] = $host;
    1709     }
    1710     conf_update_param('host', $conf['host']);
    1711   }
    1712   return $conf['host'];
    1713 }
    17141695?>
Note: See TracChangeset for help on using the changeset viewer.