diff --git a/wp-includes/class-json.php b/wp-includes/class-json.php
index 646c4b7a7c..112a95f0d8 100644
|
a
|
b
|
define('SERVICES_JSON_USE_TO_JSON', 64); |
| 105 | 105 | * // create a new instance of Services_JSON |
| 106 | 106 | * $json = new Services_JSON(); |
| 107 | 107 | * |
| 108 | | * // convert a complexe value to JSON notation, and send it to the browser |
| | 108 | * // convert a complex value to JSON notation, and send it to the browser |
| 109 | 109 | * $value = array('foo', 'bar', array(1, 2, 'baz'), array(3, array(4))); |
| 110 | 110 | * $output = $json->encode($value); |
| 111 | 111 | * |