Modification chemin des fichiers

This commit is contained in:
Michael RICOIS 2010-09-28 16:39:52 +00:00
parent c0cbb2f14f
commit f0c6467974

View File

@ -24,8 +24,7 @@ class RefController extends Zend_Controller_Action
{
//Lecture du nom du fichier
$fichier = $this->_getParam('q','');
if (!empty($q) && file_exists(APPLICATION_PATH . '/public/fichiers/'.$fichier))
if (!empty($fichier) && file_exists('fichiers/'.$fichier))
{
//Désactivation de la vue
$this->_helper->viewRenderer->setNoRender();
@ -51,7 +50,7 @@ class RefController extends Zend_Controller_Action
break;
}
$data = file_get_contents(APPLICATION_PATH . '/public/fichiers/'.$fichier);
$data = file_get_contents('fichiers/'.$fichier);
$this->getResponse()->setHeader('Content-Length', strlen($data))
->setHeader('Cache-Control', 'private, max-age=0, must-revalidate')