diff --git a/apps/files_sharing/settings-personal.php b/apps/files_sharing/settings-personal.php index f4d61b34f5..9a9629c86b 100644 --- a/apps/files_sharing/settings-personal.php +++ b/apps/files_sharing/settings-personal.php @@ -28,11 +28,13 @@ $uid = \OC::$server->getUserSession()->getUser()->getUID(); $server = \OC::$server->getURLGenerator()->getAbsoluteURL('/'); $cloudID = $uid . '@' . rtrim(\OCA\Files_Sharing\Helper::removeProtocolFromUrl($server), '/'); $url = 'https://owncloud.org/federation'; +$ownCloudLogoPath = \OC::$server->getURLGenerator()->imagePath('files_sharing', 'social-owncloud.svg'); $tmpl = new OCP\Template('files_sharing', 'settings-personal'); $tmpl->assign('outgoingServer2serverShareEnabled', \OCA\Files_Sharing\Helper::isOutgoingServer2serverShareEnabled()); $tmpl->assign('message_with_URL', $l->t('Share with me through my #ownCloud federation ID %s see %s', [$cloudID, $url])); $tmpl->assign('message_without_URL', $l->t('Share with me through my #ownCloud federation ID %s', [$cloudID])); +$tmpl->assign('owncloud_logo_path', $ownCloudLogoPath); $tmpl->assign('reference', $url); $tmpl->assign('cloudId', $cloudID); diff --git a/apps/files_sharing/templates/settings-personal.php b/apps/files_sharing/templates/settings-personal.php index c6bb1474c8..528e74f4ce 100644 --- a/apps/files_sharing/templates/settings-personal.php +++ b/apps/files_sharing/templates/settings-personal.php @@ -51,7 +51,7 @@ style('files_sharing', '3rdparty/gs-share/style'); t('Add it to your website:')); ?> - + t('Share with me via ownCloud')); ?>

@@ -59,7 +59,7 @@ style('files_sharing', '3rdparty/gs-share/style');

t('HTML Code:')); ?>

<a target="_blank" href="<?php p($_['reference']); ?>"> - <img src="../img/social-owncloud.svg" /> + <img src="<?php p(\OC::$server->getURLGenerator()->getAbsoluteURL($_['owncloud_logo_path'])); ?>" /> <?php p($l->t('Share with me via ownCloud')); ?> </a>