diff options
author | Robin Appelman <icewind1991@gmail> | 2010-05-01 23:09:36 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail> | 2010-05-01 23:09:36 +0200 |
commit | c52e7d360fb9a0e57fe895724f4d082f9338a716 (patch) | |
tree | fcf855230891010711c4d1cbae4cb75ca6aa119a /js/filebrowser.js | |
parent | 567c17fde595ae47c6e281bcdad56d3723c642e6 (diff) | |
download | nextcloud-server-c52e7d360fb9a0e57fe895724f4d082f9338a716.tar.gz nextcloud-server-c52e7d360fb9a0e57fe895724f4d082f9338a716.zip |
More bug fixes, mostly IE related
Diffstat (limited to 'js/filebrowser.js')
-rwxr-xr-x | js/filebrowser.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/filebrowser.js b/js/filebrowser.js index 18567f202c5..c95e1290642 100755 --- a/js/filebrowser.js +++ b/js/filebrowser.js @@ -30,11 +30,11 @@ OC_FILES.browser.showInitial=function(){ OC_FILES.getdirectorycontent(dir,OC_FILES.browser.show_callback,true); } -OC_FILES.browser.show=function(dir){ +OC_FILES.browser.show=function(dir,forceReload){ if(!dir || !dir.split){ dir=''; } - OC_FILES.getdirectorycontent(dir,OC_FILES.browser.show_callback); + OC_FILES.getdirectorycontent(dir,OC_FILES.browser.show_callback,forceReload); } OC_FILES.browser.breadcrumb=new Object(); |