Commit c17aad61c7b400980f25f69997f6a6d3b206e365
1 parent
c7c48970
Exists in
master
and in
3 other branches
correction requete BD creation utilisateurs fake (admin, superadmin) =>
forme "nom prenom" pour bugfix recherche email update version date
Showing
3 changed files
with
8 additions
and
8 deletions
Show diff stats
README-LABINVENT.md
... | ... | @@ -53,8 +53,8 @@ Logiciel testé et validé sur les configurations suivantes : |
53 | 53 | |
54 | 54 | VERSION ACTUELLE |
55 | 55 | |
56 | -Date: 20/06/2017 | |
57 | -Version: 2.6.8 | |
56 | +Date: 22/06/2017 | |
57 | +Version: 2.6.9 | |
58 | 58 | -> Bugfixes materiels/index (boutons admin inactifs) |
59 | 59 | |
60 | 60 | Version majeure en cours (2.6): https://projects.irap.omp.eu/versions/161 | ... | ... |
database/Insert_FakeUsers.sql
... | ... | @@ -24,9 +24,9 @@ INSERT INTO users (nom, username, password, email, role, groupes_metier_id) VALU |
24 | 24 | |
25 | 25 | -- SANS GROUPES METIERS |
26 | 26 | INSERT INTO users (nom, username, password, email, role) VALUES |
27 | - ('SuperAdmin', 'superadmin', '$2y$10$LZzpws3oDidBcqO/Fy1RTedLLk3ENTmplny5J7bZ6R1PqFoGOw3Ma', 'superadmin@irap.omp.eu', 'Super Administrateur'), | |
28 | - ('AdminPlus', 'adminplus', '$2y$10$LZzpws3oDidBcqO/Fy1RTedLLk3ENTmplny5J7bZ6R1PqFoGOw3Ma', 'adminplus@irap.omp.eu', 'Administration Plus'), | |
29 | - ('Admin', 'admin', '$2y$10$LZzpws3oDidBcqO/Fy1RTedLLk3ENTmplny5J7bZ6R1PqFoGOw3Ma', 'admin@irap.omp.eu', 'Administration'), | |
30 | - ('Responsable', 'responsable', '$2y$10$LZzpws3oDidBcqO/Fy1RTedLLk3ENTmplny5J7bZ6R1PqFoGOw3Ma', 'resp@irap.omp.eu', 'Responsable'), | |
31 | - ('Utilisateur', 'utilisateur', '$2y$10$LZzpws3oDidBcqO/Fy1RTedLLk3ENTmplny5J7bZ6R1PqFoGOw3Ma', 'utilisateur@irap.omp.eu', 'Utilisateur'); | |
27 | + ('SuperAdmin .', 'superadmin', '$2y$10$LZzpws3oDidBcqO/Fy1RTedLLk3ENTmplny5J7bZ6R1PqFoGOw3Ma', 'superadmin@irap.omp.eu', 'Super Administrateur'), | |
28 | + ('AdminPlus .', 'adminplus', '$2y$10$LZzpws3oDidBcqO/Fy1RTedLLk3ENTmplny5J7bZ6R1PqFoGOw3Ma', 'adminplus@irap.omp.eu', 'Administration Plus'), | |
29 | + ('Admin .', 'admin', '$2y$10$LZzpws3oDidBcqO/Fy1RTedLLk3ENTmplny5J7bZ6R1PqFoGOw3Ma', 'admin@irap.omp.eu', 'Administration'), | |
30 | + ('Responsable .', 'responsable', '$2y$10$LZzpws3oDidBcqO/Fy1RTedLLk3ENTmplny5J7bZ6R1PqFoGOw3Ma', 'resp@irap.omp.eu', 'Responsable'), | |
31 | + ('Utilisateur .', 'utilisateur', '$2y$10$LZzpws3oDidBcqO/Fy1RTedLLk3ENTmplny5J7bZ6R1PqFoGOw3Ma', 'utilisateur@irap.omp.eu', 'Utilisateur'); | |
32 | 32 | ... | ... |
src/Template/Layout/default.ctp
... | ... | @@ -101,7 +101,7 @@ $cakeDescription = 'Labinvent 2'; |
101 | 101 | </i></td> |
102 | 102 | <td id="version"> |
103 | 103 | <!-- VERSION M.m.f.b (version (M)ajeure, version (m)ineure, numero de nouvelle (f)onctionnalite, numero de (b)ugfix) --> |
104 | - <font color="black">VERSION 2.6.8 (20/06/2017)</font> | |
104 | + <font color="black">VERSION 2.6.9 (22/06/2017)</font> | |
105 | 105 | <br/> |
106 | 106 | <font color="black"><a href="<?php |
107 | 107 | ... | ... |