diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2020-05-29 15:43:45 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2020-05-29 15:43:45 +0200 |
commit | 71b2f941015b4a9388db61455ebfae7cace937b4 (patch) | |
tree | b31e4f877b26a11db520de52a089854f0035bfc4 /lib/private | |
parent | 532f4c41dae98e9cdfe50af6b67806982cd5111f (diff) | |
download | nextcloud-server-71b2f941015b4a9388db61455ebfae7cace937b4.tar.gz nextcloud-server-71b2f941015b4a9388db61455ebfae7cace937b4.zip |
Fix the loading order of the js files_info and files_client
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/legacy/OC_Template.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/legacy/OC_Template.php b/lib/private/legacy/OC_Template.php index 447a8740eed..856d5491090 100644 --- a/lib/private/legacy/OC_Template.php +++ b/lib/private/legacy/OC_Template.php @@ -118,8 +118,8 @@ class OC_Template extends \OC\Template\Base { OC_Util::addScript('search', 'search', true); OC_Util::addScript('search', 'searchprovider'); OC_Util::addScript('merged-template-prepend', null, true); - OC_Util::addScript('dist/files_fileinfo'); - OC_Util::addScript('dist/files_client'); + OC_Util::addScript('dist/files_client', null, true); + OC_Util::addScript('dist/files_fileinfo', null, true); } OC_Util::addScript('core', 'dist/main', true); |