MINOR Fixed JSONDataFormatter excaping (fixes #5309, thanks briley)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@101811 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-03-29 22:09:11 +00:00 committed by Sam Minnee
parent 7fc538d4b1
commit ffde5144df

View File

@ -115,7 +115,7 @@ class JSONDataFormatter extends DataFormatter {
if($item->canView()) $jsonParts[] = $this->convertDataObject($item, $fields); if($item->canView()) $jsonParts[] = $this->convertDataObject($item, $fields);
} }
$json = "{\n"; $json = "{\n";
$json .= '\"totalSize\": '; $json .= '"totalSize": ';
$json .= (is_numeric($this->totalSize)) ? $this->totalSize : 'null'; $json .= (is_numeric($this->totalSize)) ? $this->totalSize : 'null';
$json .= ",\n"; $json .= ",\n";
$json .= "\"items\": [\n" . implode(",\n", $jsonParts) . "\n]\n"; $json .= "\"items\": [\n" . implode(",\n", $jsonParts) . "\n]\n";