diff --git a/application/controllers/FichierController.php b/application/controllers/FichierController.php index b0f57dea..e5572921 100644 --- a/application/controllers/FichierController.php +++ b/application/controllers/FichierController.php @@ -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);