summaryrefslogtreecommitdiff
path: root/modules/watchdog
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2006-03-27 07:29:34 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2006-03-27 07:29:34 +0000
commitb13dcfa90c1e4f4ab5929536daf0bcc83a230219 (patch)
tree439a5cdad99d2f1cdb5e0d30cc44a0bf134a6d7f /modules/watchdog
parent3052c49e0924fbe93789dec3760ae8f19685654e (diff)
downloadbrdo-b13dcfa90c1e4f4ab5929536daf0bcc83a230219.tar.gz
brdo-b13dcfa90c1e4f4ab5929536daf0bcc83a230219.tar.bz2
- Code style
Diffstat (limited to 'modules/watchdog')
-rw-r--r--modules/watchdog/watchdog.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module
index 71f353d7f..0f620b2cc 100644
--- a/modules/watchdog/watchdog.module
+++ b/modules/watchdog/watchdog.module
@@ -66,7 +66,7 @@ function watchdog_cron() {
*/
function watchdog_user($op, &$edit, &$user) {
if ($op == 'delete') {
- db_query('UPDATE {watchdog} SET uid=0 WHERE uid=%d', $user->uid);
+ db_query('UPDATE {watchdog} SET uid = 0 WHERE uid = %d', $user->uid);
}
}