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/includes/functions.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/includes/functions.php')
| -rw-r--r-- | phpBB/includes/functions.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 588a717f0e..465964913c 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2264,6 +2264,7 @@ function login_box($redirect = '', $l_explain = '', $l_success = '', $admin = fa { $phpbb_log->add('admin', $user->data['user_id'], $user->ip, 'LOG_ADMIN_AUTH_FAIL'); } + send_status_line(403, 'Forbidden'); trigger_error('NO_AUTH_ADMIN'); } @@ -2280,6 +2281,7 @@ function login_box($redirect = '', $l_explain = '', $l_success = '', $admin = fa { $phpbb_log->add('admin', $user->data['user_id'], $user->ip, 'LOG_ADMIN_AUTH_FAIL'); } + send_status_line(403, 'Forbidden'); trigger_error('NO_AUTH_ADMIN'); } @@ -2301,6 +2303,8 @@ function login_box($redirect = '', $l_explain = '', $l_success = '', $admin = fa { // We log the attempt to use a different username... $phpbb_log->add('admin', $user->data['user_id'], $user->ip, 'LOG_ADMIN_AUTH_FAIL'); + + send_status_line(403, 'Forbidden'); trigger_error('NO_AUTH_ADMIN_USER_DIFFER'); } |
