in common.inc, row 480:
$host = $uri['host'] . ($port != 80 ? ':'. $port : '');

may generate a PHP notice that $uri['host'] is undefined. I suggest to check for it:

if(isset($uri['host'])){
$host = $uri['host'] . ($port != 80 ? ':'. $port : '');
}

Comments

Status: Active » Closed (outdated)

Automatically closed because Drupal 6 is no longer supported. If the issue verifiably applies to later versions, please reopen with details and update the version.