Subversion Repositories eFlore/Projets.eflore-projets

Compare Revisions

Ignore whitespace Rev 498 → Rev 497

/trunk/services/bibliotheque/ReponseHttp.php
6,10 → 6,10
 
public function __construct() {
$this->resultatService = new ResultatService();
if (function_exists('json_decode') == false){
if ( !function_exists('json_decode') ){
require_once (dirname(__FILE__).'/JSON.php');
function json_decode($content, $assoc = false){
if ($assoc) {
function json_decode($content, $assoc=false){
if ( $assoc ){
$json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE);
} else {
$json = new Services_JSON;