Skip to content

Commit c0b3e75

Browse files
committedSep 22, 2011
Fixed issue in XML content editor with disabled elements causing side
effects, e.g. in widget configurations checking other element values.
1 parent cac7581 commit c0b3e75

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎src/org/opencms/workplace/editors/CmsXmlContentEditor.java

+5
Original file line numberDiff line numberDiff line change
@@ -2036,6 +2036,11 @@ && getValidationHandler().getWarnings(getElementLocale()).containsKey(key)) {
20362036
// close row
20372037
result.append("</tr>\n");
20382038

2039+
// remove disabled element to avoid eventual side effects, e.g. in widget configurations
2040+
if (disabledElement) {
2041+
elementSequence.removeValue(0);
2042+
}
2043+
20392044
}
20402045
}
20412046
// close table

0 commit comments

Comments
 (0)