diff options
author | Piotr Filiciak <piotr@filiciak.pl> | 2016-05-24 12:34:37 +0200 |
---|---|---|
committer | Piotr Filiciak <piotr@filiciak.pl> | 2016-05-24 12:34:37 +0200 |
commit | 11b2e98a30da1cc97d82739600da53fcef765c3f (patch) | |
tree | d8a7c412f3c0368c93a7728e2fbbaa86054f0e6c /apps/files_sharing/templates | |
parent | 53437ecced06c5dcff0c2b62b915b6bbf716bccb (diff) | |
download | nextcloud-server-11b2e98a30da1cc97d82739600da53fcef765c3f.tar.gz nextcloud-server-11b2e98a30da1cc97d82739600da53fcef765c3f.zip |
video poster
Diffstat (limited to 'apps/files_sharing/templates')
-rw-r--r-- | apps/files_sharing/templates/public.php | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index fb29382bdee..e39d1b08076 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -20,14 +20,10 @@ OCP\Util::addScript('files', 'newfilemenu'); OCP\Util::addScript('files', 'files'); OCP\Util::addScript('files', 'filelist'); OCP\Util::addscript('files', 'keyboardshortcuts'); - -$sysConfig = \OC::$server->getConfig(); -$thumbSizeX = $sysConfig->getSystemValue('preview_max_x', 1024); -$thumbSizeY = $sysConfig->getSystemValue('preview_max_y', 1024); ?> <?php if ($_['previewSupported']): /* This enables preview images for links (e.g. on Facebook, Google+, ...)*/?> - <link rel="image_src" href="<?php p(\OC::$server->getURLGenerator()->linkToRoute( 'core_ajax_public_preview', array('x' => $thumbSizeX, 'y' => $thumbSizeY, 'file' => $_['directory_path'], 't' => $_['dirToken']))); ?>" /> + <link rel="image_src" href="<?php p(\OC::$server->getURLGenerator()->linkToRoute( 'core_ajax_public_preview', array('x' => $_['previewMaxX'], 'y' => $_['previewMaxY'], 'file' => $_['directory_path'], 't' => $_['dirToken']))); ?>" /> <?php endif; ?> <div id="notification-container"> @@ -96,7 +92,7 @@ $thumbSizeY = $sysConfig->getSystemValue('preview_max_y', 1024); <?php else: ?> <?php if ($_['previewEnabled'] && substr($_['mimetype'], 0, strpos($_['mimetype'], '/')) == 'video'): ?> <div id="imgframe"> - <video tabindex="0" controls="" preload="none" style="max-width: <?php echo p($thumbSizeX); ?>px; max-height: <?php p($thumbSizeY); ?>px"> + <video tabindex="0" controls="" preload="none" style="max-width: <?php p($_['previewMaxX']); ?>px; max-height: <?php p($_['previewMaxY']); ?>px"> <source src="<?php p($_['downloadURL']); ?>" type="<?php p($_['mimetype']); ?>" /> </video> </div> |