You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2017/02/23 09:38:11 UTC

svn commit: r1784100 - /ofbiz/ofbiz-framework/trunk/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/ConfigXMLReader.java

Author: jleroux
Date: Thu Feb 23 09:38:11 2017
New Revision: 1784100

URL: http://svn.apache.org/viewvc?rev=1784100&view=rev
Log:
No functional change, right indentation

Modified:
    ofbiz/ofbiz-framework/trunk/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/ConfigXMLReader.java

Modified: ofbiz/ofbiz-framework/trunk/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/ConfigXMLReader.java
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/ConfigXMLReader.java?rev=1784100&r1=1784099&r2=1784100&view=diff
==============================================================================
--- ofbiz/ofbiz-framework/trunk/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/ConfigXMLReader.java (original)
+++ ofbiz/ofbiz-framework/trunk/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/ConfigXMLReader.java Thu Feb 23 09:38:11 2017
@@ -555,7 +555,7 @@ public class ConfigXMLReader {
             Element securityElement = UtilXml.firstChildElement(requestMapElement, "security");
             if (securityElement != null) {
                 if (!UtilProperties.propertyValueEqualsIgnoreCase("url", "no.http", "Y")) {
-                this.securityHttps = "true".equals(securityElement.getAttribute("https"));
+                    this.securityHttps = "true".equals(securityElement.getAttribute("https"));
                 } else {
                     String httpRequestMapList = UtilProperties.getPropertyValue("url", "http.request-map.list");
                     if (UtilValidate.isNotEmpty(httpRequestMapList)) {