Skip to content
This repository has been archived by the owner on Dec 26, 2022. It is now read-only.

Commit

Permalink
Solving flef#121
Browse files Browse the repository at this point in the history
  • Loading branch information
flef committed Apr 13, 2014
1 parent c0802ca commit 28a0884
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mgate/PubliBundle/Manager/TwigExtensionManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ public function liaison($mot, $entiere = 'de', $contractee = null){

}

public function pluriel($mot, $nbr, $pluriel = 's', $simple = ''){
public function pluriel($nbr, $pluriel = 's', $simple = ''){
if($nbr > 1)
return $mot.$pluriel;
return $pluriel;
else
return $mot.$simple;
return $simple;
}

}

0 comments on commit 28a0884

Please sign in to comment.