From c987bbd4796a89552bc2576f6f0cc3fb96bcf702 Mon Sep 17 00:00:00 2001 From: David Rothstein Date: Sat, 15 Sep 2012 15:33:29 -0400 Subject: Issue #1239410 by cangeceiro, swentel, jbrown: Fixed watchdog() should use php's time() to log time of event. --- includes/bootstrap.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'includes') diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index 5b8647410..d1d78b52b 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -1705,7 +1705,8 @@ function watchdog($type, $message, $variables = array(), $severity = WATCHDOG_NO 'request_uri' => $base_root . request_uri(), 'referer' => isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '', 'ip' => ip_address(), - 'timestamp' => REQUEST_TIME, + // Request time isn't accurate for long processes, use time() instead. + 'timestamp' => time(), ); // Call the logging hooks to log/process the message -- cgit v1.2.3