diff options
| author | Jim Wigginton <terrafrost@phpbb.com> | 2009-01-27 20:08:21 +0000 | 
|---|---|---|
| committer | Jim Wigginton <terrafrost@phpbb.com> | 2009-01-27 20:08:21 +0000 | 
| commit | 5f77d4855dac894689f3468813e17f7d1a2bf45f (patch) | |
| tree | 99fbbf23642d9e57e7792fef203c1d8e2cd404a9 /phpBB/includes/acp | |
| parent | 06a47f8d8bfec14d63c84ca812fc3cdefa5a7874 (diff) | |
| download | forums-5f77d4855dac894689f3468813e17f7d1a2bf45f.tar forums-5f77d4855dac894689f3468813e17f7d1a2bf45f.tar.gz forums-5f77d4855dac894689f3468813e17f7d1a2bf45f.tar.bz2 forums-5f77d4855dac894689f3468813e17f7d1a2bf45f.tar.xz forums-5f77d4855dac894689f3468813e17f7d1a2bf45f.zip  | |
Fixed bug #40275 - The sql query in acp_users.php lacks a condition
Authorised by: acydburn
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9310 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp')
| -rw-r--r-- | phpBB/includes/acp/acp_users.php | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/acp/acp_users.php b/phpBB/includes/acp/acp_users.php index 05a087f4c3..dd2b838f83 100644 --- a/phpBB/includes/acp/acp_users.php +++ b/phpBB/includes/acp/acp_users.php @@ -972,6 +972,7 @@ class acp_users  					{  						$sql = 'DELETE FROM ' . LOG_TABLE . '  							WHERE log_type = ' . LOG_USERS . " +							AND reportee_id = $user_id  							$where_sql";  						$db->sql_query($sql);  | 
