Index: t3lib/js/extjs/tree/tree.js =================================================================== --- t3lib/js/extjs/tree/tree.js (revision 9252) +++ t3lib/js/extjs/tree/tree.js (revision ) @@ -190,7 +190,7 @@ this.suspendEvents(); if (this.tcaExclusiveKeys.length) { - if (checked = true && exclusiveKeys.indexOf(uid) > -1) { + if (checked === true && exclusiveKeys.indexOf(uid) > -1) { // this key is exclusive, so uncheck all others this.root.cascade(function(node) { if (node !== checkedNode && node.attributes.checked) { @@ -199,7 +199,7 @@ } }); this.exclusiveSelectedKey = uid; - } else if (checked = true && exclusiveKeys.indexOf(uid) === -1 && !Ext.isEmpty(this.exclusiveSelectedKey)) { + } else if (checked === true && exclusiveKeys.indexOf(uid) === -1 && !Ext.isEmpty(this.exclusiveSelectedKey)) { // this key is exclusive, so uncheck all others this.root.cascade(function(node) { if (exclusiveKeys.indexOf('' + node.attributes.uid) > -1) {