From 45efa0ddaa42936280dcf79fd0556aff1a2dc6ec Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 25 Jun 2010 20:42:48 +0000 Subject: - Patch #521370 by marcingy: hook_watchdog() is called ordered by name (!?). --- includes/bootstrap.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes') diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index 3075a8ca2..7d84e993f 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -1647,7 +1647,7 @@ function watchdog($type, $message, $variables = array(), $severity = WATCHDOG_NO ); // Call the logging hooks to log/process the message - foreach (module_implements('watchdog', TRUE) as $module) { + foreach (module_implements('watchdog') as $module) { module_invoke($module, 'watchdog', $log_entry); } -- cgit v1.2.3