Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 1221 → Rev 1222

/trunk/src/org/tela_botanica/del/client/composants/partageurl/PartageUrlPresenteur.java
62,7 → 62,15
InformationsRecherche infoRecherche;
infoRecherche = cache.getInformationsRechercheImage();
arguments = infoRecherche.versChaineRequete() + "#" + ConstantesNavigation.PAGE_RECHERCHE_IMAGES;
// Ajout du protocole
String protocole = "~";
if (CacheClient.getInstance().getProtocoleCourant() != null) {
protocole += String.valueOf(CacheClient.getInstance().getProtocoleCourant().getId());
}
url = new Config().getUrl("del") + "?" + arguments;
if (protocole != "~") {
url += protocole;
}
} else if (cache.getPageCourante() == ConstantesNavigation.PAGE_RECHERCHE_OBSERVATIONS) {
InformationsRecherche infoRecherche;
infoRecherche = cache.getInformationsRechercheObservation();