1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-21 18:44:37 +02:00

[ticket/10605] Break long comment into multiple lines 80 chars short.

PHPBB3-10605
This commit is contained in:
Andreas Fischer
2012-03-27 01:43:09 +02:00
parent dd53d0576d
commit ad073d22b9

View File

@ -1184,7 +1184,8 @@ function phpbb_delete_user_pms($user_id)
$db->sql_query($sql);
}
// Set the remaining author id to anonymous - this way users are still able to read messages from users being removed
// Set the remaining author id to anonymous
// This way users are still able to read messages from users being removed
$sql = 'UPDATE ' . PRIVMSGS_TO_TABLE . '
SET author_id = ' . ANONYMOUS . '
WHERE author_id = ' . $user_id;