Skip to content

Commit

Permalink
Merge pull request #134 from abes-esr/develop
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 f7fb532 + ac3ddd7 commit 83450b1
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 83450b1

Please sign in to comment.