In http://drupal.org/cvs?commit=198428 you changed:
define('XMLSITEMAP_TIME', time());
to:
define('XMLSITEMAP_TIME', $_SERVER['REQUEST_TIME']);
That server variable will not be available using PHP 4 or 5.0.
See also:
http://us.php.net/manual/en/function.time.php ("Timestamp of the start of the request is available in $_SERVER['REQUEST_TIME'] since PHP 5.1.")
http://us.php.net/manual/en/reserved.variables.server.php ("The timestamp of the start of the request. Available since PHP 5.1.0.")
http://drupal.org/node/367477
http://drupal.org/node/216357
http://drupal.org/node/302763
Comments
Comment #1
dave reidComment #2
avpadernoI will revert the change I made.
Thanks for the report.
Comment #3
avpadernoThis has been fixed in CVS.
Comment #4
avpadernoI am fixing the issue title, and changing the status.
Thanks again for the report.