summaryrefslogtreecommitdiff
path: root/modules/trigger
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-04-11 18:33:44 +0000
committerDries Buytaert <dries@buytaert.net>2010-04-11 18:33:44 +0000
commitff301288f2ea06d76606c05bccac5957e2873a94 (patch)
treeb46d9d7e56612945850281a136161967ba8bc5f2 /modules/trigger
parentde33f74b4040cc3f7880269152b277d90b081cc8 (diff)
downloadbrdo-ff301288f2ea06d76606c05bccac5957e2873a94.tar.gz
brdo-ff301288f2ea06d76606c05bccac5957e2873a94.tar.bz2
- Patch #348448 by mfb, c960657, marvil07, cdale, jpmckinney: fixed PHP strict warnings when running tests and for PHP 5.3.
Diffstat (limited to 'modules/trigger')
-rw-r--r--modules/trigger/trigger.module6
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/trigger/trigger.module b/modules/trigger/trigger.module
index ebbc538b5..93ed2485c 100644
--- a/modules/trigger/trigger.module
+++ b/modules/trigger/trigger.module
@@ -488,7 +488,8 @@ function trigger_user_login(&$edit, $account, $category) {
* Implements hook_user_logout().
*/
function trigger_user_logout($account) {
- _trigger_user('user_logout', $edit = NULL, $account);
+ $edit = NULL;
+ _trigger_user('user_logout', $edit, $account);
}
/**
@@ -534,7 +535,8 @@ function trigger_user_delete($account) {
* Implements hook_user_view().
*/
function trigger_user_view($account) {
- _trigger_user('user_view', $edit = NULL, $account, NULL);
+ $edit = NULL;
+ _trigger_user('user_view', $edit, $account, NULL);
}
/**