- Code style

4.7.x
Steven Wittens 2006-03-27 07:29:34 +00:00
parent 3052c49e09
commit b13dcfa90c
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}
}

View File

@ -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);
}
}