summaryrefslogtreecommitdiff
path: root/modules/trigger
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-03-14 23:01:38 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-03-14 23:01:38 +0000
commit3b3050959952ceae617b59246f364f4b0edd2dcd (patch)
treeb7cc39b97156ee0f346334d1e8dd78b5662c40e7 /modules/trigger
parent8a0d326a8e134ad4261b9575ce073f9e44b72f60 (diff)
downloadbrdo-3b3050959952ceae617b59246f364f4b0edd2dcd.tar.gz
brdo-3b3050959952ceae617b59246f364f4b0edd2dcd.tar.bz2
#347250 by catch, drewish, and Berdir: Add function for loading multiple users in one request.
Diffstat (limited to 'modules/trigger')
-rw-r--r--modules/trigger/trigger.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/trigger/trigger.module b/modules/trigger/trigger.module
index 6df47e686..aeb5bb0fd 100644
--- a/modules/trigger/trigger.module
+++ b/modules/trigger/trigger.module
@@ -195,7 +195,7 @@ function _trigger_normalize_node_context($type, $node) {
// An action that works on users is being called in a node context.
// Load the user object of the node's author.
case 'user':
- return user_load(array('uid' => $node->uid));
+ return user_load($node->uid);
}
}
@@ -298,7 +298,7 @@ function _trigger_normalize_comment_context($type, $comment) {
// An action that works on users is being called in a comment context.
case 'user':
- return user_load(array('uid' => is_array($comment) ? $comment['uid'] : $comment->uid));
+ return user_load(is_array($comment) ? $comment['uid'] : $comment->uid);
}
}