mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
* Filemanager - fix unable to change directory after returning from shared files list
This commit is contained in:
parent
3b25305959
commit
fc096da1b3
@ -692,6 +692,13 @@ app.classes.filemanager = AppJS.extend(
|
|||||||
for(var etemplate_name in this.path_widget) break;
|
for(var etemplate_name in this.path_widget) break;
|
||||||
if (widget) etemplate_name = widget.getInstanceManager().uniqueId;
|
if (widget) etemplate_name = widget.getInstanceManager().uniqueId;
|
||||||
|
|
||||||
|
// Make sure everything is in place for changing directory
|
||||||
|
if(!this.et2 || typeof etemplate_name !== 'string' ||
|
||||||
|
typeof this.path_widget[etemplate_name] === 'undefined')
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
switch (_dir)
|
switch (_dir)
|
||||||
{
|
{
|
||||||
case '..':
|
case '..':
|
||||||
|
Loading…
Reference in New Issue
Block a user