summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-06-25 20:42:48 +0000
committerDries Buytaert <dries@buytaert.net>2010-06-25 20:42:48 +0000
commit45efa0ddaa42936280dcf79fd0556aff1a2dc6ec (patch)
treebe16663136e1f0976933bfdf6114beb3d6d327b0
parent8b0fda82cc390388e753c78b68a46fd1290a497c (diff)
downloadbrdo-45efa0ddaa42936280dcf79fd0556aff1a2dc6ec.tar.gz
brdo-45efa0ddaa42936280dcf79fd0556aff1a2dc6ec.tar.bz2
- Patch #521370 by marcingy: hook_watchdog() is called ordered by name (!?).
-rw-r--r--includes/bootstrap.inc2
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);
}