Commit 02f039f3720ba29a245b34f027e2f17e20d15960
1 parent
6bb4a0f7
Exists in
master
and in
3 other branches
Version: 2.2.2.1
Demande (terminée): Bugfixes nombre catégorie/sous-catégorie associé Version majeure en cours (2.2): https://projects.irap.omp.eu/versions/106 ROADMAP: https://projects.irap.omp.eu/projects/labinvent/roadmap
Showing
3 changed files
with
4 additions
and
5 deletions
Show diff stats
README-LABINVENT.md
... | ... | @@ -51,9 +51,8 @@ Logiciel testé et validé sur les configurations suivantes : |
51 | 51 | VERSION ACTUELLE |
52 | 52 | |
53 | 53 | Date: 18/05/2016 |
54 | -Version: 2.2.2 | |
55 | -Demande (terminée): https://projects.irap.omp.eu/issues/3640 | |
56 | - https://projects.irap.omp.eu/issues/3644 | |
54 | +Version: 2.2.2.1 | |
55 | +Demande (terminée): Bugfixes nombre catégorie/sous-catégorie associé | |
57 | 56 | |
58 | 57 | Version majeure en cours (2.2): https://projects.irap.omp.eu/versions/106 |
59 | 58 | ... | ... |
src/Template/Categories/view.ctp
... | ... | @@ -27,7 +27,7 @@ |
27 | 27 | |
28 | 28 | <h3 id="t_suivis" style="cursor: pointer;"> |
29 | 29 | <i class="icon-chevron-down" style="font-size: 14px;" id="i_suivis"></i> |
30 | - <span style="text-decoration: underline;">Sous-Catégorie associé (<?= sizeof($sousCategories)?>)</span> | |
30 | + <span style="text-decoration: underline;">Sous-Catégorie associé (<?= $sousCategories->count()?>)</span> | |
31 | 31 | </h3> |
32 | 32 | <div id="suivis" style="margin-bottom: 20px;"> |
33 | 33 | ... | ... |
src/Template/SurCategories/view.ctp
... | ... | @@ -26,7 +26,7 @@ |
26 | 26 | |
27 | 27 | <h3 id="t_suivis" style="cursor: pointer;"> |
28 | 28 | <i class="icon-chevron-down" style="font-size: 14px;" id="i_suivis"></i> |
29 | - <span style="text-decoration: underline;">Catégorie associé (<?= sizeof($categories) ?>)</span> | |
29 | + <span style="text-decoration: underline;">Catégorie associé (<?= $categories->count() ?>)</span> | |
30 | 30 | </h3> |
31 | 31 | <div id="suivis" style="margin-bottom: 20px;"> |
32 | 32 | ... | ... |