diff options
author | Joas Schilling <coding@schilljs.com> | 2020-04-14 18:24:02 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2020-04-18 11:21:28 +0200 |
commit | 708b4991d9039543130b569dd845ed8d8cd1a68c (patch) | |
tree | 9f62b0021496c92448b3697162b8a32ff974a6e5 /apps/files/appinfo | |
parent | 250467e842a0856a84e9962ed6ef476a2e3ccfef (diff) | |
download | nextcloud-server-708b4991d9039543130b569dd845ed8d8cd1a68c.tar.gz nextcloud-server-708b4991d9039543130b569dd845ed8d8cd1a68c.zip |
Fix legacy routes
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files/appinfo')
-rw-r--r-- | apps/files/appinfo/routes.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/appinfo/routes.php b/apps/files/appinfo/routes.php index 01d1e14054a..d304ceb7b28 100644 --- a/apps/files/appinfo/routes.php +++ b/apps/files/appinfo/routes.php @@ -153,7 +153,7 @@ $application->registerRoutes( /** @var $this \OC\Route\Router */ -$this->create('files_ajax_download', 'ajax/download.php') +$this->create('files_ajax_download', 'apps/files/ajax/download.php') ->actionInclude('files/ajax/download.php'); -$this->create('files_ajax_list', 'ajax/list.php') +$this->create('files_ajax_list', 'apps/files/ajax/list.php') ->actionInclude('files/ajax/list.php'); |