From b9c1c0a2293b3d05b241dbbdfedb305be8caa014 Mon Sep 17 00:00:00 2001 From: gloas <gloas@afi-sa.fr> Date: Fri, 29 Jun 2018 11:45:26 +0200 Subject: [PATCH] dev #64573 fix errors --- library/ZendAfi/Controller/Plugin/Manager/FileManager.php | 2 +- library/ZendAfi/View/Helper/Admin/FileManager/File.php | 2 +- tests/phpunit.xml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/library/ZendAfi/Controller/Plugin/Manager/FileManager.php b/library/ZendAfi/Controller/Plugin/Manager/FileManager.php index 44c4b99bf55..431f1c89d0b 100644 --- a/library/ZendAfi/Controller/Plugin/Manager/FileManager.php +++ b/library/ZendAfi/Controller/Plugin/Manager/FileManager.php @@ -106,7 +106,7 @@ class ZendAfi_Controller_Plugin_Manager_FileManager extends ZendAfi_Controller_P 'data-popup' => 'true', 'class' => $model->isWritable() ? null : 'disabled'])], - ['url' => $this->_view->escape($model->getUrl()), + ['url' => $model->getUrl(), 'icon' => '', 'caption' => function($model) { return $this->_view->tag('i', '', ['class' => 'fa fa-download']) . $this->_view->tag('span', $this->_('Télécharger')); diff --git a/library/ZendAfi/View/Helper/Admin/FileManager/File.php b/library/ZendAfi/View/Helper/Admin/FileManager/File.php index aec701367c9..0a9e601f58c 100644 --- a/library/ZendAfi/View/Helper/Admin/FileManager/File.php +++ b/library/ZendAfi/View/Helper/Admin/FileManager/File.php @@ -64,7 +64,7 @@ class ZendAfi_View_Helper_Admin_FileManager_File extends ZendAfi_View_Helper_Bas $url_reload = $url . '?version='. time(); // force reload image $open_new_tab = ($file->isFile() - ? $this->view->tagAnchor($this->view->escape($url_reload), + ? $this->view->tagAnchor($url_reload, $this->_('Accéder à "%s" dans un nouvel onglet.', $file->getName()), ['target' => '_blank']) : ''); diff --git a/tests/phpunit.xml b/tests/phpunit.xml index b0da9b36117..611a375297d 100644 --- a/tests/phpunit.xml +++ b/tests/phpunit.xml @@ -30,8 +30,8 @@ <directory suffix=".php">../library/Trait</directory> <directory suffix=".php">../library/ZendAfi</directory> <directory suffix=".php">../library/fonctions</directory> - <directory suffix=".php">../library/digital_resources/</directory> - <directory suffix=".php">../library/templates/</directory> + <directory suffix=".php">../library/digital_resources</directory> + <directory suffix=".php">../library/templates</directory> <directory suffix=".php">./js/</directory> <exclude> <file>../index.php</file> -- GitLab