diff --git a/laravel/response.php b/laravel/response.php index 5e69308f..7979ef46 100644 --- a/laravel/response.php +++ b/laravel/response.php @@ -115,7 +115,7 @@ public static function jsonp($callback, $data, $status = 200, $headers = array() { $headers['Content-Type'] = 'application/javascript; charset=utf-8'; - return new static($callback.'('.json_encode($data).')', $status, $headers); + return new static($callback.'('.json_encode($data).');', $status, $headers); } /**