diff options
author | MaZderMind | 2016-12-29 03:55:04 +0100 |
---|---|---|
committer | MaZderMind | 2016-12-29 03:55:04 +0100 |
commit | f7d1aa166e9f3006e17399c7dd0c236386abc4d7 (patch) | |
tree | 3e0f373089725554399475da032e8fcbeb8abbdd /view | |
parent | 5faaebf0454e2d35b5fccc55ef9685328680f780 (diff) |
force objects in json
Diffstat (limited to 'view')
-rw-r--r-- | view/streams-json-v1.php | 2 | ||||
-rw-r--r-- | view/streams-json-v2.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/view/streams-json-v1.php b/view/streams-json-v1.php index 7962226..f64f627 100644 --- a/view/streams-json-v1.php +++ b/view/streams-json-v1.php @@ -92,4 +92,4 @@ foreach (Conferences::getActiveConferences() as $conference) } } -echo json_encode($struct, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE); +echo json_encode($struct, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_FORCE_OBJECT); diff --git a/view/streams-json-v2.php b/view/streams-json-v2.php index 524f2db..1fad78f 100644 --- a/view/streams-json-v2.php +++ b/view/streams-json-v2.php @@ -102,4 +102,4 @@ foreach (Conferences::getActiveConferences() as $conference) ); } -echo json_encode($struct, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE); +echo json_encode($struct, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_FORCE_OBJECT); |