Changeset 619
- Timestamp:
- 10/25/07 22:59:30 (1 year ago)
- Files:
-
- branches/1.0beta3.x/lib/jelix/core/response/jResponseJson.class.php (modified) (2 diffs)
- branches/1.0beta3.x/lib/jelix/core/response/jResponseJson.class.php (modified) (2 diffs)
- trunk/lib/jelix/core/response/jResponseJson.class.php (modified) (2 diffs)
- trunk/lib/jelix/core/response/jResponseJson.class.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0beta3.x/lib/jelix/core/response/jResponseJson.class.php
r550 r619 43 43 $content = json_encode($this->datas); 44 44 #else 45 $json = new Services_JSON( JSON_LOOSE_TYPE);45 $json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE); 46 46 $content = $json->encode($this->datas); 47 47 #endif … … 72 72 $content = json_encode($message); 73 73 #else 74 $json = new Services_JSON( JSON_LOOSE_TYPE);74 $json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE); 75 75 $content = $json->encode($message); 76 76 #endif branches/1.0beta3.x/lib/jelix/core/response/jResponseJson.class.php
r550 r619 43 43 $content = json_encode($this->datas); 44 44 #else 45 $json = new Services_JSON( JSON_LOOSE_TYPE);45 $json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE); 46 46 $content = $json->encode($this->datas); 47 47 #endif … … 72 72 $content = json_encode($message); 73 73 #else 74 $json = new Services_JSON( JSON_LOOSE_TYPE);74 $json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE); 75 75 $content = $json->encode($message); 76 76 #endif trunk/lib/jelix/core/response/jResponseJson.class.php
r550 r619 43 43 $content = json_encode($this->datas); 44 44 #else 45 $json = new Services_JSON( JSON_LOOSE_TYPE);45 $json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE); 46 46 $content = $json->encode($this->datas); 47 47 #endif … … 72 72 $content = json_encode($message); 73 73 #else 74 $json = new Services_JSON( JSON_LOOSE_TYPE);74 $json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE); 75 75 $content = $json->encode($message); 76 76 #endif trunk/lib/jelix/core/response/jResponseJson.class.php
r550 r619 43 43 $content = json_encode($this->datas); 44 44 #else 45 $json = new Services_JSON( JSON_LOOSE_TYPE);45 $json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE); 46 46 $content = $json->encode($this->datas); 47 47 #endif … … 72 72 $content = json_encode($message); 73 73 #else 74 $json = new Services_JSON( JSON_LOOSE_TYPE);74 $json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE); 75 75 $content = $json->encode($message); 76 76 #endif
