Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Fix #629: false negative alert when moving a file to another workspac…
Browse files Browse the repository at this point in the history
…e with same folder path

(cherry picked from commit 5b1a77f)
  • Loading branch information
cdujeu committed Oct 17, 2014
1 parent eae0c6d commit 17029bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/plugins/access.fs/fsActions.xml
Expand Up @@ -749,7 +749,7 @@
var oForm = modal.getForm();
var getAction = oForm.down('input[name="get_action"]');
var selectedNode = this.treeSelector.getSelectedNode();
if(selectedNode == ajaxplorer.getContextNode().getPath()){
if(!this.treeSelector.getFilterActive(activeRepository) && selectedNode == ajaxplorer.getContextNode().getPath()){
alert(MessageHash[183]);
return false;
}
Expand Down

0 comments on commit 17029bb

Please sign in to comment.