summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2020-05-23 09:47:53 +0200
committerGitHub <noreply@github.com>2020-05-23 09:47:53 +0200
commit5e35594cb6a8eeb89197ae2ac044bc352bbaba38 (patch)
treebec01cae8e2600f14ac3d2f94b4ee8c4e40f0c0c /lib
parent533cb6992b0e4516875d69b821cfddb76482769e (diff)
parent44d05bf356824329d7691e00e91aa7de891221b9 (diff)
downloadnextcloud-server-5e35594cb6a8eeb89197ae2ac044bc352bbaba38.tar.gz
nextcloud-server-5e35594cb6a8eeb89197ae2ac044bc352bbaba38.zip
Merge pull request #20989 from nextcloud/td/js/move_core_files_webpack
Move core/js/files to webpack
Diffstat (limited to 'lib')
-rw-r--r--lib/private/legacy/OC_Template.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/legacy/OC_Template.php b/lib/private/legacy/OC_Template.php
index 736011b4359..447a8740eed 100644
--- a/lib/private/legacy/OC_Template.php
+++ b/lib/private/legacy/OC_Template.php
@@ -118,14 +118,14 @@ 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('files/fileinfo');
- OC_Util::addScript('files/client');
+ OC_Util::addScript('dist/files_fileinfo');
+ OC_Util::addScript('dist/files_client');
}
OC_Util::addScript('core', 'dist/main', true);
if (\OC::$server->getRequest()->isUserAgent([\OC\AppFramework\Http\Request::USER_AGENT_IE])) {
// shim for the davclient.js library
- \OCP\Util::addScript('files/iedavclient');
+ \OCP\Util::addScript('dist/files_iedavclient');
}
self::$initTemplateEngineFirstRun = false;