diff options
| author | Tristan Darricau <github@nicofuma.fr> | 2016-09-01 14:53:54 +0200 |
|---|---|---|
| committer | Tristan Darricau <github@nicofuma.fr> | 2016-09-01 14:53:54 +0200 |
| commit | a3dc829dab61ab2f548e9bc818c689a6f9f31287 (patch) | |
| tree | 22b13f4776b5111624efedcc73d1b3dc0877117a /phpBB/viewtopic.php | |
| parent | dff950162cd4d79d5e199e833e46a98d381397dc (diff) | |
| parent | 4b6c2c8cde0b87d32f8df8af87239580ddc340c4 (diff) | |
| download | forums-a3dc829dab61ab2f548e9bc818c689a6f9f31287.tar forums-a3dc829dab61ab2f548e9bc818c689a6f9f31287.tar.gz forums-a3dc829dab61ab2f548e9bc818c689a6f9f31287.tar.bz2 forums-a3dc829dab61ab2f548e9bc818c689a6f9f31287.tar.xz forums-a3dc829dab61ab2f548e9bc818c689a6f9f31287.zip | |
Merge pull request #4340 from Senky/ticket/10961
[ticket/10961] Send HTTP 403 when applicable
* Senky/ticket/10961:
[ticket/10961] Send HTTP 403 when applicable
Diffstat (limited to 'phpBB/viewtopic.php')
| -rw-r--r-- | phpBB/viewtopic.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index ded0f9aacc..4325fafb43 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -376,6 +376,7 @@ if (!$overrides_f_read_check && !$auth->acl_get('f_read', $forum_id)) { if ($user->data['user_id'] != ANONYMOUS) { + send_status_line(403, 'Forbidden'); trigger_error('SORRY_AUTH_READ'); } |
