Changeset 15575 for trunk/include


Ignore:
Timestamp:
Jun 6, 2012, 5:38:56 PM (12 years ago)
Author:
patdenice
Message:

bug:2647
External ImageMagick does not work anymore on 1and1 servers

File:
1 edited

Legend:

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

    r15573 r15575  
    16931693  return $is_mobile_theme;
    16941694}
     1695
     1696/**
     1697 * return hostname with gethostbyaddr and keep it in database
     1698 */
     1699function 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}
    16951714?>
Note: See TracChangeset for help on using the changeset viewer.