Skip to content

Commit

Permalink
correctif #118
Browse files Browse the repository at this point in the history
  • Loading branch information
flef committed Apr 11, 2014
1 parent 72530cc commit c0802ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mgate/PersonneBundle/Controller/MembreController.php
Original file line number Diff line number Diff line change
Expand Up @@ -296,8 +296,8 @@ private function enMinusculeSansAccent($texte){
*/
public function getEmailEtu($membre) {
$junior = $this->container->getParameter('junior');
$emailEtu = array_key_exists('domaineEmailEtu', $junior) ? $junior['domaineEmailEtu'] : '@';
$emailAncien = array_key_exists('domaineEmailAncien', $junior) ? $junior['domaineEmailAncien'] : '@';
$emailEtu = array_key_exists('domaineEmailEtu', $junior) ? '@'.$junior['domaineEmailEtu'] : '@';
$emailAncien = array_key_exists('domaineEmailAncien', $junior) ? '@'.$junior['domaineEmailAncien'] : '@';

$now = new \DateTime("now");
$now = (int) $now->format("Y");
Expand Down

0 comments on commit c0802ca

Please sign in to comment.