diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-05-04 11:17:53 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-05-06 16:46:59 +0200 |
commit | fdeafef6a08c45f8b45ab9fac303e3bffc3607b0 (patch) | |
tree | a96ca5a4bfeca3b5a2a330c125e7f6738f67b10a /apps/files/js/fileactions.js | |
parent | 093e9dd4225e6681140523c75bfc20809cd6d651 (diff) | |
download | nextcloud-server-fdeafef6a08c45f8b45ab9fac303e3bffc3607b0.tar.gz nextcloud-server-fdeafef6a08c45f8b45ab9fac303e3bffc3607b0.zip |
Auto-add fileid in URL for currently displayed folder
Diffstat (limited to 'apps/files/js/fileactions.js')
-rw-r--r-- | apps/files/js/fileactions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 69e32d500c4..c3d4fba9ef5 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -619,7 +619,7 @@ this.register('dir', 'Open', OC.PERMISSION_READ, '', function (filename, context) { var dir = context.$file.attr('data-path') || context.fileList.getCurrentDirectory(); - context.fileList.changeDirectory(OC.joinPaths(dir, filename)); + context.fileList.changeDirectory(OC.joinPaths(dir, filename), true, false, parseInt(context.$file.attr('data-id'), 10)); }); this.registerAction({ |