Erreur commentaires

This commit is contained in:
Michael RICOIS 2016-02-17 10:07:21 +00:00
parent 10c2c54b16
commit de9e392d92

View File

@ -41,7 +41,7 @@ class FichierController extends Zend_Controller_Action
$content_type = 'application/pdf';
// --- Envoi du fichier sur la sortie standard
$modules = array(); //apache_get_modules();();
$modules = array(); //apache_get_modules();
if (in_array('mod_xsendfile', $modules)) {
header('X-Sendfile: ' . $file);
header('Content-Type: ' . $content_type);
@ -75,7 +75,7 @@ class FichierController extends Zend_Controller_Action
$file = $c->profil->path->shared . '/files/'.$file;
// --- Envoi du fichier sur la sortie standard
if ( file_exists($file) ) {
$modules = array(); //apache_get_modules();();
$modules = array(); //apache_get_modules();
if (in_array('mod_xsendfile', $modules)) {
header('X-Sendfile: ' . $file);
header('Content-Type: ' . $content_type);
@ -106,7 +106,7 @@ class FichierController extends Zend_Controller_Action
$file = $c->profil->path->shared . '/files/'. $filename;
// --- Envoi du fichier sur la sortie standard
if ( file_exists($file) ) {
$modules = array(); //apache_get_modules();();
$modules = array(); //apache_get_modules();
if (in_array('mod_xsendfile', $modules)) {
header('X-Sendfile: ' . $file);
header('Content-Type: ' . $content_type);
@ -137,7 +137,7 @@ class FichierController extends Zend_Controller_Action
$file = realpath($c->profil->path->shared).'/datafile/kbis/'.$filename;
// --- Envoi du fichier sur la sortie standard
if ( file_exists($file) ) {
$modules = array(); //apache_get_modules();();
$modules = array(); //apache_get_modules();
if (in_array('mod_xsendfile', $modules)) {
header('X-Sendfile: ' . $file);
header('Content-Type: ' . $content_type);
@ -168,7 +168,7 @@ class FichierController extends Zend_Controller_Action
$file = $c->profil->path->shared . '/files/' . $filename;
// --- Envoi du fichier sur la sortie standard
if ( file_exists($file) ) {
$modules = array(); //apache_get_modules();();
$modules = array(); //apache_get_modules();
if (in_array('mod_xsendfile', $modules)) {
header('X-Sendfile: ' . $file);
header('Content-Type: ' . $content_type);
@ -199,7 +199,7 @@ class FichierController extends Zend_Controller_Action
$file = $c->profil->path->shared . '/files/' .$filename;
// --- Envoi du fichier sur la sortie standard
if ( file_exists($file) ) {
$modules = array(); //apache_get_modules();();
$modules = array(); //apache_get_modules();
if (in_array('mod_xsendfile', $modules)) {
header('X-Sendfile: ' . $file);
header('Content-Type: ' . $content_type);
@ -231,7 +231,7 @@ class FichierController extends Zend_Controller_Action
// --- Envoi du fichier sur la sortie standard
if ( file_exists($file) ) {
$modules = array(); //apache_get_modules();();
$modules = array(); //apache_get_modules();
if (in_array('mod_xsendfile', $modules)) {
header('X-Sendfile: ' . $file);
header('Content-Type: ' . $content_type);