Browse Source

Merge pull request #11671 from kenrowland/HPCC-19865

HPCC-198665 Error defining child elements in security mgr plugin schema

Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 6 years ago
parent
commit
dc62363c47
1 changed files with 2 additions and 1 deletions
  1. 2 1
      esp/xslt/ui_configmgr.xslt

+ 2 - 1
esp/xslt/ui_configmgr.xslt

@@ -736,7 +736,8 @@
                                 i.<xsl:value-of select="name()"/>_required = aS.required;
                                 i.<xsl:value-of select="name()"/>_onChange = aS.onChange;
                                 i.<xsl:value-of select="name()"/>_onChangeMsg = aS.onChangeMsg;
-                                subTypeKey += "[@" + "<xsl:value-of select="name()"/>" + "='" + "<xsl:value-of select="."/>" + "']";
+                                if('<xsl:value-of select="name()"/>' != 'password')
+                                  subTypeKey += "[@" + "<xsl:value-of select="name()"/>" + "='" + "<xsl:value-of select="."/>" + "']";
                                 if (aS.caption)
                                   i.<xsl:value-of select="name()"/>_caption = aS.caption;
                               }