10 lines
295 B
PHP
10 lines
295 B
PHP
<?php
|
|
header('Content-Type: application/json');
|
|
header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
|
|
header('Cache-Control: post-check=0, pre-check=0', false);
|
|
header('Pragma: no-cache');
|
|
|
|
require_once('../../settings.php');
|
|
|
|
echo html_entity_decode(json_encode($settings));
|