summaryrefslogtreecommitdiffstats
path: root/settings/templates
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2015-01-07 09:02:33 +0100
committerJoas Schilling <nickvergessen@gmx.de>2015-01-07 09:02:33 +0100
commit3d997e8c62bd752f38bcc11f02fb2af0e46d9154 (patch)
treed944a45085ef44843ab6e258a2980a6034fc0be6 /settings/templates
parent2daf90dae64aaf1143a133ba99505a8a9d39ff9f (diff)
downloadnextcloud-server-3d997e8c62bd752f38bcc11f02fb2af0e46d9154.tar.gz
nextcloud-server-3d997e8c62bd752f38bcc11f02fb2af0e46d9154.zip
Fix incorrect warning about setting the overwrite.cli.url
Diffstat (limited to 'settings/templates')
-rw-r--r--settings/templates/admin.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index d04351c2d6c..f55626defb0 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -178,13 +178,13 @@ if (!$_['isLocaleWorking']) {
<?php
}
-if ($_['suggestedOverwriteWebroot']) {
+if ($_['suggestedOverwriteCliUrl']) {
?>
<div class="section">
<h2><?php p($l->t('URL generation in notification emails'));?></h2>
<span class="connectionwarning">
- <?php p($l->t('If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the "overwritewebroot" option in your config.php file to the webroot path of your installation (Suggested: "%s")', $_['suggestedOverwriteWebroot'])); ?>
+ <?php p($l->t('If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the "overwrite.cli.url" option in your config.php file to the webroot path of your installation (Suggested: "%s")', $_['suggestedOverwriteCliUrl'])); ?>
</span>
</div>