seul dieu le sait
This commit is contained in:
parent
b145b13dea
commit
faf30bfa4d
|
@ -48,4 +48,4 @@ class Patient
|
|||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -181,7 +181,7 @@ class Response{
|
|||
echo $this->response;
|
||||
//fermeture de la communication
|
||||
header('Connection: close');
|
||||
header('Content-Length: '.ob_get_length());
|
||||
header('Content-Length:'.ob_get_length());
|
||||
ob_end_flush();
|
||||
ob_flush();
|
||||
flush();
|
||||
|
@ -199,4 +199,4 @@ class Response{
|
|||
$response->write($content);
|
||||
$response->send();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,12 +13,10 @@ if($GLOBALS['compression']){
|
|||
}
|
||||
|
||||
//les managers ne renvoient QUE du json, on met donc le header de la réponse a jour
|
||||
//header('Content-Type: application/json');
|
||||
//on inclu l'autoloader
|
||||
include(dirname(__FILE__).DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'autoloader.php');
|
||||
|
||||
$manager = new Manager();
|
||||
|
||||
//on récupère la commande et la parse pour être executée
|
||||
if(isset($_POST['command'])){
|
||||
$commands = explode(':',$_POST['command']);
|
||||
|
|
Loading…
Reference in New Issue