diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-06-25 20:42:48 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-06-25 20:42:48 +0000 |
commit | 45efa0ddaa42936280dcf79fd0556aff1a2dc6ec (patch) | |
tree | be16663136e1f0976933bfdf6114beb3d6d327b0 | |
parent | 8b0fda82cc390388e753c78b68a46fd1290a497c (diff) | |
download | brdo-45efa0ddaa42936280dcf79fd0556aff1a2dc6ec.tar.gz brdo-45efa0ddaa42936280dcf79fd0556aff1a2dc6ec.tar.bz2 |
- Patch #521370 by marcingy: hook_watchdog() is called ordered by name (!?).
-rw-r--r-- | includes/bootstrap.inc | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |