]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix preview URLs 2037/head
authorJoas Schilling <coding@schilljs.com>
Mon, 7 Nov 2016 17:26:18 +0000 (18:26 +0100)
committerRoeland Jago Douma <roeland@famdouma.nl>
Tue, 8 Nov 2016 15:39:13 +0000 (16:39 +0100)
Signed-off-by: Joas Schilling <coding@schilljs.com>
lib/private/legacy/template/functions.php

index 226cf04688453a7ed5505fc609213fee995abaf6..7814918b8151b2ba22c50ee90cdcab0e54d89cfe 100644 (file)
@@ -186,14 +186,14 @@ function mimetype_icon( $mimetype ) {
  * @return link to the preview
  */
 function preview_icon( $path ) {
-       return \OC::$server->getURLGenerator()->linkToRoute('core_ajax_preview', ['x' => 32, 'y' => 32, 'file' => $path]);
+       return \OC::$server->getURLGenerator()->linkToRoute('core.Preview.getPreview', ['x' => 32, 'y' => 32, 'file' => $path]);
 }
 
 /**
  * @param string $path
  */
 function publicPreview_icon ( $path, $token ) {
-       return \OC::$server->getURLGenerator()->linkToRoute('core_ajax_public_preview', ['x' => 32, 'y' => 32, 'file' => $path, 't' => $token]);
+       return \OC::$server->getURLGenerator()->linkToRoute('files_sharing.PublicPreview.getPreview', ['x' => 32, 'y' => 32, 'file' => $path, 't' => $token]);
 }
 
 /**