File: includes/acp/acp_help_phpbb.php
Unmodified
Added
Modified
Removed
Line 90 | Line 90 |
---|
if (!empty($response)) {
|
if (!empty($response)) {
|
$decoded_response = json_decode(htmlspecialchars_decode($response), true);
| $decoded_response = json_decode(html_entity_decode($response, ENT_COMPAT), true);
|
if ($decoded_response && isset($decoded_response['status']) && $decoded_response['status'] == 'ok') {
| if ($decoded_response && isset($decoded_response['status']) && $decoded_response['status'] == 'ok') {
|
Line 126 | Line 126 |
---|
}
$template->assign_block_vars('providers', array(
|
}
$template->assign_block_vars('providers', array(
|
'NAME' => htmlspecialchars($provider),
| 'NAME' => htmlspecialchars($provider, ENT_COMPAT),
|
));
foreach ($data as $key => $value)
| ));
foreach ($data as $key => $value)
|