]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Wed, 21 Jun 2017 18:03:52 +0000 (20:03 +0200)
committerRoland Häder <roland@mxchange.org>
Wed, 21 Jun 2017 18:09:40 +0000 (20:09 +0200)
- added missing context parameter "is_user_name_required"

Signed-off-by: Roland Häder <roland@mxchange.org>
web/WEB-INF/web.xml

index 9b8c778f3074f4d884f5669038ee89bdac8752f2..17f1777c74600c23f35f583446bc8f92102b1595 100644 (file)
         <param-name>is_feature_user_must_change_email_address_enabled</param-name>
         <param-value>true</param-value>
     </context-param>
-    <context-param>
-        <description>Minimum password score (default 50 may be to low)</description>
-        <param-name>min_user_password_score</param-name>
-        <param-value>50</param-value>
-    </context-param>
     <context-param>
         <description>Whether user registration page is in index or own page.</description>
         <param-name>is_feature_user_registration_in_index_enabled</param-name>
         <param-value>false</param-value>
     </context-param>
+    <context-param>
+        <description>Whether the public user profile is enabled. If this option is enabled, the setting "is_user_name_required" must also be enabled as it is mandadory.</description>
+        <param-name>is_public_profile_enabled</param-name>
+        <param-value>true</param-value>
+    </context-param>
+    <context-param>
+        <description>Whether user names are required for completing registration.</description>
+        <param-name>is_user_name_required</param-name>
+        <param-value>true</param-value>
+    </context-param>
+    <context-param>
+        <description>Minimum password score (default 50 may be to low)</description>
+        <param-name>min_user_password_score</param-name>
+        <param-value>50</param-value>
+    </context-param>
     <servlet>
         <servlet-name>Faces Servlet</servlet-name>
         <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>