Fix content-type API

This commit is contained in:
Thomas Zilio 2018-06-28 15:23:52 +02:00
parent 67d5df087b
commit 4bd135459b
2 changed files with 7 additions and 4 deletions

View File

@ -9,6 +9,9 @@ function serverError()
}
}
// Impostazioni del Content-Type
header('Content-Type: application/json; charset=UTF-8');
// Gestione degli errori
set_error_handler('serverError');
register_shutdown_function('serverError');

View File

@ -1,9 +1,5 @@
<?php
// Impostazioni per la corretta interpretazione di UTF-8
header('Content-Type: text/html; charset=UTF-8');
ob_start();
// Impostazioni di configurazione PHP
date_default_timezone_set('Europe/Rome');
@ -153,6 +149,9 @@ if (!$continue && getURLPath() != slashes(ROOTDIR.'/index.php') && !Permissions:
// Operazione aggiuntive (richieste non API)
if (!API::isAPIRequest()) {
// Impostazioni di Content-Type e Charset Header
header('Content-Type: text/html; charset=UTF-8');
/*
// Controllo CSRF
if(!CSRF::getInstance()->validate()){
@ -176,6 +175,7 @@ if (!API::isAPIRequest()) {
// Registrazione globale del template per gli input HTML
register_shutdown_function('translateTemplate');
ob_start();
// Impostazione della sessione di base
$_SESSION['infos'] = isset($_SESSION['infos']) ? array_unique($_SESSION['infos']) : [];