Commit 2a3d0a01 authored by Jean-Philippe Metivier's avatar Jean-Philippe Metivier
Browse files

Correction mineurs

parent e5404506
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -209,7 +209,7 @@ class MailService {
            $texte .= "<br/><br/><hr/><br/>";
            $texte .= "Initialement envoyé à :";
            $texte .= "<ul>";
            foreach ($to as $t) $texte .= "<li>" . $t . "</li>";
            foreach (explode(",",$mail->getDestinatairesInitials()) as $t) $texte .= "<li>" . $t . "</li>";
            $texte .= "</ul>";
        }

+3 −3
Original line number Diff line number Diff line
@@ -84,14 +84,14 @@ if (!isset($options['droits']) OR !isset($options['droits']['supprimer'])) {
                    <?php /** @see \UnicaenMail\Controller\MailController::afficherAction() */?>
                    <a href="<?php echo $this->url('mail/afficher', ['mail' => $mail->getId()], [], true); ?>"
                       class="ajax-modal"
                       title="Afficher le mail" data-toggle="tooltip" data-html="true"
                       title="Afficher le mail" data-bs-toggle="tooltip" data-bs-html="true"
                    >
                        <span class="fas fa-eye"></span></a>
                <?php endif; ?>
                <?php if ($canReenvoyer) : ?>
                    <?php /** @see \UnicaenMail\Controller\MailController::reenvoiAction() */?>
                    <a href="<?php echo $this->url('mail/reenvoi', ['mail' => $mail->getId()], [], true); ?>"
                       title="Ré-envoyer le mail" data-toggle="tooltip" data-html="true"
                       title="Ré-envoyer le mail" data-bs-toggle="tooltip" data-bs-html="true"
                    >
                        <span class="fas fa-envelope"></span></a>
                <?php endif; ?>
@@ -99,7 +99,7 @@ if (!isset($options['droits']) OR !isset($options['droits']['supprimer'])) {
                    <?php /** @see \UnicaenMail\Controller\MailController::supprimerAction() */?>
                    <a href="<?php echo $this->url('mail/supprimer', ['mail' => $mail->getId()], [], true); ?>"
                       class="ajax-modal" data-event="modification"
                       title="Supprimer le mail" data-toggle="tooltip" data-html="true"
                       title="Supprimer le mail" data-bs-toggle="tooltip" data-bs-html="true"
                    >
                        <span class="fas fa-trash-alt text-danger"></span></a>
                <?php endif; ?>