Skip to content

Commit 8b661a2

Browse files
committed
Fixed relating db models to search results
1 parent 1162642 commit 8b661a2

File tree

6 files changed

+252
-201
lines changed

6 files changed

+252
-201
lines changed

src/main/java/org/computate/frFR/java/ConfigSite.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -595,12 +595,16 @@ protected void _siteZone() throws Exception {
595595
}
596596

597597
public String solrId;
598-
599598
protected void _solrId() throws Exception {
600599
solrId = config.getString(
601600
langueConfigGlobale.getString(I18n.var_SOLR_ID));
602601
}
603602

603+
public String solrIdCapitalise;
604+
protected void _solrIdCapitalise() throws Exception {
605+
solrIdCapitalise = StringUtils.capitalize(solrId);
606+
}
607+
604608
public String solrCollectionComputate;
605609

606610
public String getSolrCollectionComputate() {
@@ -1034,6 +1038,7 @@ public void initConfigSite() throws Exception {
10341038
_nomFichierConfig();
10351039
_siteZone();
10361040
_solrId();
1041+
_solrIdCapitalise();
10371042
// _versionMaven();
10381043
// _versionZookeeper();
10391044
// _prefixePortZookeeper();

0 commit comments

Comments
 (0)