diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-11-18 20:18:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-18 20:18:08 +0100 |
commit | dd74d1ac117d0fa4d8d26ae4962ac1a99b7a4219 (patch) | |
tree | a116f6016548247733b0cbcbe296087aa3a55f4c | |
parent | 14f7b2c46633b7a21656872ebf6d809398a342e4 (diff) | |
parent | 9536a40025c17afa20a81681684e86fd88f82879 (diff) | |
download | nextcloud-server-dd74d1ac117d0fa4d8d26ae4962ac1a99b7a4219.tar.gz nextcloud-server-dd74d1ac117d0fa4d8d26ae4962ac1a99b7a4219.zip |
Merge pull request #12517 from nextcloud/bugfix/noid/files-external-templates
Fix loading of files external templates file
-rw-r--r-- | apps/files_external/list.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/list.php b/apps/files_external/list.php index a63475e78e6..5be3474cbf2 100644 --- a/apps/files_external/list.php +++ b/apps/files_external/list.php @@ -36,7 +36,7 @@ $tmpl->assign('showgridview', $showgridview && !$isIE); /* Load Status Manager */ \OCP\Util::addStyle('files_external', 'external'); \OCP\Util::addScript('files_external', 'statusmanager'); -\OCP\Util::addScript('files_external', 'templates.js'); +\OCP\Util::addScript('files_external', 'templates'); \OCP\Util::addScript('files_external', 'rollingqueue'); OCP\Util::addScript('files_external', 'app'); |