Modification chemin des fichiers
This commit is contained in:
parent
c0cbb2f14f
commit
f0c6467974
@ -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')
|
||||
|
Loading…
x
Reference in New Issue
Block a user