Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 899 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 899 Rev 952
Line 45... Line 45...
45
		if ($this->entete_http != RestServeur::HTTP_CODE_OK) {
45
		if ($this->entete_http != RestServeur::HTTP_CODE_OK) {
46
			$mime = 'text/html';
46
			$mime = 'text/html';
47
		}
47
		}
48
		// Gestion du type de contenu
48
		// Gestion du type de contenu
49
		if (!is_null($mime) && !is_null($encodage)) {
49
		if (!is_null($mime) && !is_null($encodage)) {
50
			header("Content-Type: $mime; charset=$encodage");
50
			if(strpos($_SERVER['SCRIPT_NAME'], 'phpunit') === FALSE) header("Content-Type: $mime; charset=$encodage");
51
		} else if (!is_null($mime) && is_null($encodage)) {
51
		} else if (!is_null($mime) && is_null($encodage)) {
52
			header("Content-Type: $mime");
52
			if(strpos($_SERVER['SCRIPT_NAME'], 'phpunit') === FALSE) header("Content-Type: $mime");
53
		}
53
		}
54
		// Envoie de l'entĂȘte
54
		// Envoie de l'entĂȘte
55
		RestServeur::envoyerEnteteStatutHttp($this->entete_http);
55
		RestServeur::envoyerEnteteStatutHttp($this->entete_http);
56
		// Envoie du corps
56
		// Envoie du corps
57
		return $this->corps_http;
57
		return $this->corps_http;