aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_privmsgs.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2012-03-27 01:43:09 +0200
committerAndreas Fischer <bantu@phpbb.com>2012-03-27 01:43:09 +0200
commitad073d22b9e543d5842af7b8ef94fe7e6b443504 (patch)
treea73c2af20f931d93d4d1b514e4d46b4e7e886ad5 /phpBB/includes/functions_privmsgs.php
parentdd53d0576d8256e37074cc23dd5b9769acc12d1a (diff)
downloadforums-ad073d22b9e543d5842af7b8ef94fe7e6b443504.tar
forums-ad073d22b9e543d5842af7b8ef94fe7e6b443504.tar.gz
forums-ad073d22b9e543d5842af7b8ef94fe7e6b443504.tar.bz2
forums-ad073d22b9e543d5842af7b8ef94fe7e6b443504.tar.xz
forums-ad073d22b9e543d5842af7b8ef94fe7e6b443504.zip
[ticket/10605] Break long comment into multiple lines 80 chars short.
PHPBB3-10605
Diffstat (limited to 'phpBB/includes/functions_privmsgs.php')
-rw-r--r--phpBB/includes/functions_privmsgs.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/functions_privmsgs.php b/phpBB/includes/functions_privmsgs.php
index 23f582641b..e7beae3fab 100644
--- a/phpBB/includes/functions_privmsgs.php
+++ b/phpBB/includes/functions_privmsgs.php
@@ -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;