Skip to content

Commit

Permalink
Merge pull request #135 from abes-esr/test
Browse files Browse the repository at this point in the history
Remplacement des guillemets double pour les sujets
  • Loading branch information
julg authored Dec 3, 2024
2 parents e97b078 + 83450b1 commit 71ebb30
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -600,9 +600,9 @@ public TheseMappee(Mets mets, List<Set> oaiSets, int idDoc) {

if (s != null && s.getLang() != null) {
sujetDTO.setLangue(s.getLang());
sujetDTO.setLibelle(s.getContent());
sujetDTO.setLibelle(s.getContent().replace("\"", "''"));
sujets.add(sujetDTO);
sujetsLibelle.add(s.getContent());
sujetsLibelle.add(s.getContent().replace("\"", "''"));
}
}
} catch (NullPointerException e) {
Expand Down

0 comments on commit 71ebb30

Please sign in to comment.