diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2015-12-17 13:03:37 +0100 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2015-12-17 16:18:34 +0100 |
commit | 7e44ea5da068bae204715e545b95c4852ad6283c (patch) | |
tree | cb69da44fbd42bfeae6a50d8bb46c9b5eddf9fda /core/templates/untrustedDomain.php | |
parent | d402ac91d70ead3e2824c2630904a9add51249e3 (diff) | |
download | nextcloud-server-7e44ea5da068bae204715e545b95c4852ad6283c.tar.gz nextcloud-server-7e44ea5da068bae204715e545b95c4852ad6283c.zip |
Remove deprecated function OC_User::getManager
Private deprecated function => removed
Replaced all instances with suggested replacement
Diffstat (limited to 'core/templates/untrustedDomain.php')
-rw-r--r-- | core/templates/untrustedDomain.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/untrustedDomain.php b/core/templates/untrustedDomain.php index 361495636cd..46bad216822 100644 --- a/core/templates/untrustedDomain.php +++ b/core/templates/untrustedDomain.php @@ -10,7 +10,7 @@ <?php p($l->t('Depending on your configuration, as an administrator you might also be able to use the button below to trust this domain.')); ?> <br><br> <p style="text-align:center;"> - <a href="<?php print_unescaped(OC_Helper::makeURLAbsolute(\OCP\Util::linkToRoute('settings_admin'))); ?>?trustDomain=<?php p($_['domain']); ?>" class="button"> + <a href="<?php print_unescaped(\OC::$server->getURLGenerator()->getAbsoluteURL(\OCP\Util::linkToRoute('settings_admin'))); ?>?trustDomain=<?php p($_['domain']); ?>" class="button"> <?php p($l->t('Add "%s" as trusted domain', array($_['domain']))); ?> </a> </p> |