summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-03-05 18:46:55 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-03-05 18:46:55 +0100
commit1ab10cb4f7e085f957198e05e727c81b2c9b27a9 (patch)
tree816cd80b0c1a7879fe8853438fa0091e6af6d157 /apps
parent0980c485269da052ca5dcf9cc55d4417c930e6f6 (diff)
downloadnextcloud-server-1ab10cb4f7e085f957198e05e727c81b2c9b27a9.tar.gz
nextcloud-server-1ab10cb4f7e085f957198e05e727c81b2c9b27a9.zip
Do not set #dir when on public.php
Fix #7571
Diffstat (limited to 'apps')
-rw-r--r--apps/files/js/filelist.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 550c10dba3e..9a64035d72a 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -1156,9 +1156,9 @@ $(document).ready(function() {
// need to initially switch the dir to the one from the hash (IE8)
FileList.changeDirectory(parseCurrentDirFromUrl(), false, true);
}
- }
- FileList.setCurrentDir(parseCurrentDirFromUrl(), false);
+ FileList.setCurrentDir(parseCurrentDirFromUrl(), false);
+ }
FileList.createFileSummary();
});