Commit 0d982d72a8c1ded3a4d4c7cf1a6fde89d26f3890
1 parent
abccde6a
Exists in
master
and in
3 other branches
Version: 2.4.3.4
Bugfixes Version majeure en cours (2.5): https://projects.irap.omp.eu/versions/99 ROADMAP: https://projects.irap.omp.eu/projects/labinvent/roadmap
Showing
4 changed files
with
5 additions
and
5 deletions
Show diff stats
README-LABINVENT.md
... | ... | @@ -51,9 +51,9 @@ Logiciel testé et validé sur les configurations suivantes : |
51 | 51 | VERSION ACTUELLE |
52 | 52 | |
53 | 53 | Date: 10/06/2016 |
54 | -Version: 2.4.3.3 | |
54 | +Version: 2.4.3.4 | |
55 | 55 | |
56 | -Bouton "Lier doc" commenté | |
56 | +Bugfixes | |
57 | 57 | |
58 | 58 | Version majeure en cours (2.5): https://projects.irap.omp.eu/versions/99 |
59 | 59 | ... | ... |
install/installation.sh
... | ... | @@ -304,7 +304,7 @@ if [ $BDD = "Oui" ] ; then |
304 | 304 | else |
305 | 305 | #Structure de la base de test présente dans le fichier "labinvent_mode_update.sql" |
306 | 306 | cat ./labinvent_mode_update.sql > ./build_update.sql |
307 | - mysql --user=$bddAdminName --password=$bddAdminPass -h $bddIp < ./build.sql | |
307 | + mysql --user=$bddAdminName --password=$bddAdminPass -h $bddIp < ./build_update.sql | |
308 | 308 | fi |
309 | 309 | |
310 | 310 | ... | ... |
src/Template/Layout/default.ctp
... | ... | @@ -94,7 +94,7 @@ $cakeDescription = 'Labinvent 2.0'; |
94 | 94 | </i></td> |
95 | 95 | <td id="version"> |
96 | 96 | <!-- VERSION M.m.f.b (version (M)ajeure, version (m)ineure, numero de nouvelle (f)onctionnalite, numero de (b)ugfix) --> |
97 | - <font color="black">VERSION 2.4.3.3 (10/06/2016)</font> | |
97 | + <font color="black">VERSION 2.4.3.4 (10/06/2016)</font> | |
98 | 98 | </td> |
99 | 99 | </tr> |
100 | 100 | </table> | ... | ... |
src/Template/Materiels/view.ctp
... | ... | @@ -201,7 +201,7 @@ |
201 | 201 | $displayElement(__('Lieu de stockage'), $materiel->has('site') ? h($materiel->site->nom) : ''); |
202 | 202 | $displayElement(__('Détail lieu de stockage'), h($materiel->lieu_detail)); |
203 | 203 | |
204 | - $displayElement(__($configuration->nom_responsable), $this->Html->link(h($materiel->nom_responsable), 'mailto:'.h($materiel->email_responsable))); | |
204 | + $displayElement(__('Nom du propriétaire'), $this->Html->link(h($materiel->nom_responsable), 'mailto:'.h($materiel->email_responsable))); | |
205 | 205 | $displayElement(__('N. interne (labo)'), h($materiel->numero_laboratoire)); |
206 | 206 | |
207 | 207 | if($role == 'Super Administrateur') { | ... | ... |