From fd8208081dc9789ebfa8bc73b2e5731546627b07 Mon Sep 17 00:00:00 2001 From: Etienne Pallier Date: Sat, 8 Jun 2019 09:29:16 +0200 Subject: [PATCH] LDAP CACHED cleanup --- README.md | 5 +++-- src/Controller/AppController.php | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5b97087..79d6652 100644 --- a/README.md +++ b/README.md @@ -53,14 +53,15 @@ Logiciel testé et validé sur les configurations suivantes : VERSION ACTUELLE -Date: 07/06/2019 -Version: 2.13.4 +Date: 08/06/2019 +Version: 2.13.5 Author: EP Commentaire: - LDAP CACHED cleanup - Bugfixed materiels/find/puis tri /puis export CSV (ne marchait pas) - Amélioration materiels/index Export CSV => trié par numéro labo (desc) - Bugfix materiels/add catégorie (et sous-categ) perdue après erreur saisie + - Bugfix fichiers liés send by email (webroot) IMPORTANT : - Pour connaitre la version actuelle, taper "./VERSION" diff --git a/src/Controller/AppController.php b/src/Controller/AppController.php index 18ebda0..2f36fd4 100755 --- a/src/Controller/AppController.php +++ b/src/Controller/AppController.php @@ -1214,7 +1214,7 @@ class AppController extends Controller //$email->attachments(["/var/www/html/labinvent/webroot/img/photos/$nomImg"]); // Il fallait plutot faire ça : $wwwroot_dir = new \Cake\Filesystem\Folder(WWW_ROOT); - $absFileName = new \Cake\Filesystem\File($wwwroot_dir->pwd() . DS . 'img' . DS . 'photos' . DS . $nomImg); + $absFileName = $wwwroot_dir->pwd() . DS . 'img' . DS . 'photos' . DS . $nomImg; $email->attachments([$absFileName]); $email->transport('default') @@ -1240,7 +1240,7 @@ class AppController extends Controller //$email->attachments(["/var/www/html/labinvent/webroot/files/$nomDoc"]); // Il fallait plutot faire ça : $wwwroot_dir = new \Cake\Filesystem\Folder(WWW_ROOT); - $absFileName = new \Cake\Filesystem\File($wwwroot_dir->pwd() . DS . 'files' . DS . $nomDoc); + $absFileName = $wwwroot_dir->pwd() . DS . 'files' . DS . $nomDoc; $email->attachments([$absFileName]); $email->transport('default') -- libgit2 0.21.2