diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-01-22 12:46:07 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-01-22 12:46:07 +0000 |
commit | 938c7c07a38129deeb4eabe805e3ae80db8ccead (patch) | |
tree | 69e6b62e0aedec33265d1b3c0a50fcd154062dcd /modules/dblog/dblog.module | |
parent | 4488b2481e327cbcbbbb9dfc439e8557a8942f8c (diff) | |
download | brdo-938c7c07a38129deeb4eabe805e3ae80db8ccead.tar.gz brdo-938c7c07a38129deeb4eabe805e3ae80db8ccead.tar.bz2 |
- Patch #360605 by Berdir: made CVS HEAD compatible with PHP5.3.
Diffstat (limited to 'modules/dblog/dblog.module')
-rw-r--r-- | modules/dblog/dblog.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dblog/dblog.module b/modules/dblog/dblog.module index 03ab8c46d..44f029ed9 100644 --- a/modules/dblog/dblog.module +++ b/modules/dblog/dblog.module @@ -104,7 +104,7 @@ function dblog_cron() { /** * Implementation of hook_user_cancel(). */ -function dblog_user_cancel(&$edit, &$account, $method) { +function dblog_user_cancel($edit, $account, $method) { switch ($method) { case 'user_cancel_reassign': db_update('watchdog')->fields(array('uid' => 0))->condition('uid', $account->uid)->execute(); |