Commit fd8208081dc9789ebfa8bc73b2e5731546627b07

Authored by Etienne Pallier
1 parent 40c5bb53
Exists in master and in 2 other branches dev, dev-IRAP

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)
Showing 2 changed files with 5 additions and 4 deletions   Show diff stats
@@ -53,14 +53,15 @@ Logiciel testé et validé sur les configurations suivantes : @@ -53,14 +53,15 @@ Logiciel testé et validé sur les configurations suivantes :
53 53
54 VERSION ACTUELLE 54 VERSION ACTUELLE
55 55
56 -Date: 07/06/2019  
57 -Version: 2.13.4 56 +Date: 08/06/2019
  57 +Version: 2.13.5
58 Author: EP 58 Author: EP
59 Commentaire: 59 Commentaire:
60 - LDAP CACHED cleanup 60 - LDAP CACHED cleanup
61 - Bugfixed materiels/find/puis tri /puis export CSV (ne marchait pas) 61 - Bugfixed materiels/find/puis tri /puis export CSV (ne marchait pas)
62 - Amélioration materiels/index Export CSV => trié par numéro labo (desc) 62 - Amélioration materiels/index Export CSV => trié par numéro labo (desc)
63 - Bugfix materiels/add catégorie (et sous-categ) perdue après erreur saisie 63 - Bugfix materiels/add catégorie (et sous-categ) perdue après erreur saisie
  64 + - Bugfix fichiers liés send by email (webroot)
64 65
65 IMPORTANT : 66 IMPORTANT :
66 - Pour connaitre la version actuelle, taper "./VERSION" 67 - Pour connaitre la version actuelle, taper "./VERSION"
src/Controller/AppController.php
@@ -1214,7 +1214,7 @@ class AppController extends Controller @@ -1214,7 +1214,7 @@ class AppController extends Controller
1214 //$email->attachments(["/var/www/html/labinvent/webroot/img/photos/$nomImg"]); 1214 //$email->attachments(["/var/www/html/labinvent/webroot/img/photos/$nomImg"]);
1215 // Il fallait plutot faire ça : 1215 // Il fallait plutot faire ça :
1216 $wwwroot_dir = new \Cake\Filesystem\Folder(WWW_ROOT); 1216 $wwwroot_dir = new \Cake\Filesystem\Folder(WWW_ROOT);
1217 - $absFileName = new \Cake\Filesystem\File($wwwroot_dir->pwd() . DS . 'img' . DS . 'photos' . DS . $nomImg); 1217 + $absFileName = $wwwroot_dir->pwd() . DS . 'img' . DS . 'photos' . DS . $nomImg;
1218 $email->attachments([$absFileName]); 1218 $email->attachments([$absFileName]);
1219 1219
1220 $email->transport('default') 1220 $email->transport('default')
@@ -1240,7 +1240,7 @@ class AppController extends Controller @@ -1240,7 +1240,7 @@ class AppController extends Controller
1240 //$email->attachments(["/var/www/html/labinvent/webroot/files/$nomDoc"]); 1240 //$email->attachments(["/var/www/html/labinvent/webroot/files/$nomDoc"]);
1241 // Il fallait plutot faire ça : 1241 // Il fallait plutot faire ça :
1242 $wwwroot_dir = new \Cake\Filesystem\Folder(WWW_ROOT); 1242 $wwwroot_dir = new \Cake\Filesystem\Folder(WWW_ROOT);
1243 - $absFileName = new \Cake\Filesystem\File($wwwroot_dir->pwd() . DS . 'files' . DS . $nomDoc); 1243 + $absFileName = $wwwroot_dir->pwd() . DS . 'files' . DS . $nomDoc;
1244 $email->attachments([$absFileName]); 1244 $email->attachments([$absFileName]);
1245 1245
1246 $email->transport('default') 1246 $email->transport('default')