Skip to content
Snippets Groups Projects
Commit d7877e9a authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms Committed by Jan-Hendrik Willms
Browse files

add Content-Length header for render_json(), fixes #1889

Closes #1889

Merge request studip/studip!1237
parent a116b9cf
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,9 @@
require_once __DIR__ . '/studip_response.php';
/**
* @property StudipResponse $response
*/
abstract class StudipController extends Trails_Controller
{
protected $with_session = false; //do we need to have a session for this controller
......@@ -407,8 +410,11 @@ abstract class StudipController extends Trails_Controller
*/
public function render_json($data)
{
$json = json_encode($data);
$this->set_content_type('application/json;charset=utf-8');
return $this->render_text(json_encode($data));
$this->response->add_header('Content-Length', strlen($json));
$this->render_text($json);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment