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

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

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

jleroux@apache.org
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)) {