Actions
Bug #28313
closedBug #25767: Unable to switch workspace as an editor
Javascript-Error when be_user has no access to module "Workspaces"
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Workspaces
Target version:
-
Start date:
2011-07-19
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
There is a JS-Error coming from that scenario:
- be_user has no access to module "Workspaces"
- then the link to the Workspace-module is not rendered into DOM
- then in the file typo3/sysext/workspaces/Resources/Public/JavaScript/workspacemenu.js, there is this line:
Event.observe('goToWsModule', 'click', this.goToWorkspaceModule.bind(this));
- this produces the js-error: "_prototypeEventID not defined"
Solution (patch):
if(Ext.getBody().is('#goToWsModule')){
Event.observe('goToWsModule', 'click', this.goToWorkspaceModule.bind(this));
}
Actions