aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2016-11-16 18:07:57 +0100
committerStas Vilchik <vilchiks@gmail.com>2016-11-16 18:09:28 +0100
commit640a441d745476008b20006140c4d3b0e88d06b0 (patch)
tree656114807be027d809a60789c7196b9342a69e88
parent3fbca710166bc435d3c957088e253044a1588e9e (diff)
downloadsonarqube-640a441d745476008b20006140c4d3b0e88d06b0.tar.gz
sonarqube-640a441d745476008b20006140c4d3b0e88d06b0.zip
SONAR-8385 apply feedback
-rw-r--r--server/sonar-web/src/main/webapp/WEB-INF/app/views/about/index.html.erb2
-rw-r--r--sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java6
2 files changed, 4 insertions, 4 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/views/about/index.html.erb b/server/sonar-web/src/main/webapp/WEB-INF/app/views/about/index.html.erb
index efaf6f1c578..fcb9a089ebf 100644
--- a/server/sonar-web/src/main/webapp/WEB-INF/app/views/about/index.html.erb
+++ b/server/sonar-web/src/main/webapp/WEB-INF/app/views/about/index.html.erb
@@ -1,7 +1,7 @@
<% content_for :extra_script do %>
<script>
window.sonarqube.signUpAllowed = <%= Property.value("sonar.allowUsersToSignUp") == "true" ? "true" : "false" -%>;
- window.sonarqube.landingText = '<%= escape_javascript configuration("sonar.lf.landingText", "") -%>';
+ window.sonarqube.landingText = '<%= escape_javascript configuration("sonar.lf.aboutText", "") -%>';
<% auth_providers = Api::Utils.java_facade.getIdentityProviders().to_a %>
window.sonarqube.authProviders = [
diff --git a/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java b/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java
index 454f0842c74..32e595df780 100644
--- a/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java
+++ b/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java
@@ -197,9 +197,9 @@ public class CorePropertyDefinitions {
.category(CoreProperties.CATEGORY_GENERAL)
.subCategory(CoreProperties.SUBCATEGORY_LOOKNFEEL)
.build(),
- PropertyDefinition.builder("sonar.lf.landingText")
- .name("Landing page text")
- .description("Optional text that is display on the landing page. Supports html.")
+ PropertyDefinition.builder("sonar.lf.aboutText")
+ .name("About page text")
+ .description("Optional text that is displayed on the About page. Supports html.")
.category(CoreProperties.CATEGORY_GENERAL)
.subCategory(CoreProperties.SUBCATEGORY_LOOKNFEEL)
.type(PropertyType.TEXT)