summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2014-03-05 19:57:25 +0100
committerVincent Petry <pvince81@owncloud.com>2014-03-05 19:57:25 +0100
commit1785c0c9b9fcdc6e9a8e58f13f45e5b53364882a (patch)
tree99a1d1944169111a91346ec2aefcbecaa96a70f1
parente3156fa5adf67e5145b043a109847b6904394b25 (diff)
parent1ab10cb4f7e085f957198e05e727c81b2c9b27a9 (diff)
downloadnextcloud-server-1785c0c9b9fcdc6e9a8e58f13f45e5b53364882a.tar.gz
nextcloud-server-1785c0c9b9fcdc6e9a8e58f13f45e5b53364882a.zip
Merge pull request #7575 from owncloud/issue/7571
Do not set #dir when on public.php
-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 020ee275b7d..770d5fa3e09 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -1153,9 +1153,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();
});