소스 검색

[数据中心]修复数据中心打开权限报错问题

st 5 년 전
부모
커밋
59680d9e46
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      o2web/source/x_component_process_ApplicationExplorer/Main.js

+ 1 - 1
o2web/source/x_component_process_ApplicationExplorer/Main.js

@@ -623,7 +623,7 @@ MWF.xApplication.process.ApplicationExplorer.Application = new Class({
 	checkManage: function(){
 		if (this.app.control.canManage) return true;
 		if (this.app.control.canCreate && (this.data.creatorPerson==layout.desktop.session.user.name)) return true;
-		if (this.data.controllerList.indexOf(layout.desktop.session.user.distinguishedName)!==-1) return true;
+		//if (this.data.controllerList.indexOf(layout.desktop.session.user.distinguishedName)!==-1) return true;
 		return false;
 	},