Browse Source

Add semi-colon onto padding to be safe.

Jesse O'Brien 12 years ago
parent
commit
4f5cc0cd97
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/response.php

+ 1 - 1
laravel/response.php

@@ -115,7 +115,7 @@ class Response {
 	{
 		$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);
 	}
 
 	/**