diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/watchdog.module | 2 | ||||
-rw-r--r-- | modules/watchdog/watchdog.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/watchdog.module b/modules/watchdog.module index 71f353d7f..0f620b2cc 100644 --- a/modules/watchdog.module +++ b/modules/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); } } 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); } } |