summaryrefslogtreecommitdiff
path: root/includes/actions.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-04-23 18:05:58 +0000
committerDries Buytaert <dries@buytaert.net>2008-04-23 18:05:58 +0000
commitd1779405d2b2e0ffd37825f274d0a787b261b5ee (patch)
tree2242047875a72e8507dfbee260b236a5cdc8b85a /includes/actions.inc
parentc863246b516ef9f92f4c3a9a513a0e20f315e46a (diff)
downloadbrdo-d1779405d2b2e0ffd37825f274d0a787b261b5ee.tar.gz
brdo-d1779405d2b2e0ffd37825f274d0a787b261b5ee.tar.bz2
- Patch #249941 by John Morahan: fixed incorrect parameters of watchdog() calls.
Diffstat (limited to 'includes/actions.inc')
-rw-r--r--includes/actions.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/actions.inc b/includes/actions.inc
index 8811383a0..27f7bdf27 100644
--- a/includes/actions.inc
+++ b/includes/actions.inc
@@ -41,7 +41,7 @@ function actions_do($action_ids, $object = NULL, $context = NULL, $a1 = NULL, $a
static $stack;
$stack++;
if ($stack > variable_get('actions_max_stack', 35)) {
- watchdog('actions', 'Stack overflow: too many calls to actions_do(). Aborting to prevent infinite recursion.', WATCHDOG_ERROR);
+ watchdog('actions', 'Stack overflow: too many calls to actions_do(). Aborting to prevent infinite recursion.', array(), WATCHDOG_ERROR);
return;
}
$actions = array();