mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-23 18:38:53 +00:00
[ticket/11196] Changed 401 response message in session.php.
In session.php 401 response message was "Not Authorized". I changed it to "Unauthorized". PHPBB3-11196
This commit is contained in:
parent
996f1abee3
commit
8ec55b062d
1 changed files with 1 additions and 1 deletions
|
@ -325,7 +325,7 @@ class session
|
|||
// if no session id is set, redirect to index.php
|
||||
if (defined('NEED_SID') && (!isset($_GET['sid']) || $this->session_id !== $_GET['sid']))
|
||||
{
|
||||
send_status_line(401, 'Not authorized');
|
||||
send_status_line(401, 'Unauthorized');
|
||||
redirect(append_sid("{$phpbb_root_path}index.$phpEx"));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue