mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-25 11:01:48 +02:00
[ticket/16287] Correctly pass json response to PHP file
PHPBB3-16287
This commit is contained in:
@@ -90,7 +90,7 @@ class acp_help_phpbb
|
||||
|
||||
if (!empty($response))
|
||||
{
|
||||
$decoded_response = json_decode($response, true);
|
||||
$decoded_response = json_decode(htmlspecialchars_decode($response), true);
|
||||
|
||||
if ($decoded_response && isset($decoded_response['status']) && $decoded_response['status'] == 'ok')
|
||||
{
|
||||
|
Reference in New Issue
Block a user