Commit 8a0eead0 authored by Jean-Philippe Metivier's avatar Jean-Philippe Metivier
Browse files

Merge branch 'release_4.0.2'

parents 0eb0f3a8 75c0ec30
Loading
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
Journal des modifications
=========================

4.0.2
-----
- [FIX] Affichage de la bonne adresse électronique institutionnelle sur la fiche thèse 
- [FIX] Correction de la classe css sur les card de la page des soutenances à venir

4.0.1
-----
- [FIX] signature des fonctions de StructureSubstitHelper string => ?string
+18 −0
Original line number Diff line number Diff line
# Version 4.0.2

## 1. Sur le serveur d'application

- Placez-vous dans le répertoire de l'application puis lancez la commande suivante
  pour installer la nouvelle version :

```bash
git fetch --tags && git checkout --force 4.0.2 && bash ./install.sh
```

- Selon le moteur PHP que vous avez installé, rechargez le service, exemple :
    - php7.3-fpm         : `service php7.3-fpm reload`
    - apache2-mod-php7.3 : `service apache2 reload`

## 2. Dans la base de données

R.A.S.
 No newline at end of file
+2 −2
Original line number Diff line number Diff line
@@ -102,9 +102,9 @@ $financementFormatter->setDisplayAs(FinancementFormatter::DISPLAY_AS_LINE);
                <?php echo $these->getDoctorant()->getNumeroEtudiant() ?> <br>

                <strong>
                    <?php echo $this->translate("Adresse électronique :"); ?>
                    <?php echo $this->translate("Adresse électronique institutionnelle :"); ?>
                </strong>
                <?php if ($email = $these->getDoctorant()->getEmail()): ?>
                <?php if ($email = $these->getDoctorant()->getIndividu()->getEmail()): ?>
                    <a href="mailto: <?php echo $email ?>"><?php echo $email ?></a>
                <?php else: ?>
                    <?php echo $this->translate("(Inconnu)"); ?>
+2 −2
Original line number Diff line number Diff line
@@ -36,8 +36,8 @@ $count = count($soutenances);
            $rapporteurs = array_filter($acteurs, function (Acteur $a) { return $a->estRapporteur();});
            $membres = array_filter($acteurs, function (Acteur $a) { return $a->estMembreDuJury();});
        ?>
        <div class="card bg-info">
            <div class="card-header">
        <div class="card">
            <div class="card-header bg-info">
                <h3>
                <a href="<?php echo $this->url('these/identite', [ 'these' => $soutenance->getThese()->getId() ], [], true); ?>"
                   title="Accéder aux données de la thèse"