diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2016-08-08 23:31:26 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-08-16 21:04:22 +0200 |
commit | d01689037d0be0c3e209288398bd7ca9e973048a (patch) | |
tree | 4caf6092aebd51881f5bf569034b600c4b8b31c2 /core/templates | |
parent | 737591f2391efd4822d6ccebde3d02f963456d34 (diff) | |
download | nextcloud-server-d01689037d0be0c3e209288398bd7ca9e973048a.tar.gz nextcloud-server-d01689037d0be0c3e209288398bd7ca9e973048a.zip |
Initial work on Apps page split:
* interfaces for the Admin settings (IAdmin) and section (ISection)
* SettingsManager service
* example setup with LDAP app
Diffstat (limited to 'core/templates')
-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 46bad216822..735f83fedec 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::$server->getURLGenerator()->getAbsoluteURL(\OCP\Util::linkToRoute('settings_admin'))); ?>?trustDomain=<?php p($_['domain']); ?>" class="button"> + <a href="<?php print_unescaped(\OC::$server->getURLGenerator()->getAbsoluteURL(\OCP\Util::linkToRoute('settings.AdminSettings.index'))); ?>?trustDomain=<?php p($_['domain']); ?>" class="button"> <?php p($l->t('Add "%s" as trusted domain', array($_['domain']))); ?> </a> </p> |