[ticket/10961] Send HTTP 403 when applicable #4340
+99
−1
phpBB/includes/acp/acp_board.php
| @@ -623,6 +623,7 @@ function main($id, $mode) | ||
| } | ||
| else | ||
| { | ||
| + send_status_line(403, 'Forbidden'); |
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
|
I'm also very unsure about this change since we're trying to move away from using trigger_error() anyway.
As this will also affect 3.2.x, what do you think @Nicofuma ?
It should be fine for 3.2 but it will indeed affect my existing PRs against master.
Not sure what is the best here...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PHPBB3-10961