summaryrefslogtreecommitdiffstats
path: root/core/templates/installation.php
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-07-11 17:39:44 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-07-11 17:39:44 +0200
commit20791e0ad1811912c6a7b9a9e06975c486925f54 (patch)
tree154613d9d3ea7497083f79379a5fd2a2400ded22 /core/templates/installation.php
parentaacca494c504d97be4ba0eb93289604b392d946f (diff)
downloadnextcloud-server-20791e0ad1811912c6a7b9a9e06975c486925f54.tar.gz
nextcloud-server-20791e0ad1811912c6a7b9a9e06975c486925f54.zip
use themable strings for installation
Diffstat (limited to 'core/templates/installation.php')
-rw-r--r--core/templates/installation.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php
index 7f2796a4b31..a87853cbef3 100644
--- a/core/templates/installation.php
+++ b/core/templates/installation.php
@@ -23,7 +23,7 @@
<fieldset class="warning">
<legend><strong><?php p($l->t('Security Warning'));?></strong></legend>
<p><?php p($l->t('Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)'));?><br/>
- <?php p($l->t('Please update your PHP installation to use ownCloud securely.'));?></p>
+ <?php p($l->t('Please update your PHP installation to use %s securely.', $defaults->getName() )); ?></p>
</fieldset>
<?php endif; ?>
<?php if(!$_['secureRNG']): ?>
@@ -37,7 +37,10 @@
<fieldset class="warning">
<legend><strong><?php p($l->t('Security Warning'));?></strong></legend>
<p><?php p($l->t('Your data directory and files are probably accessible from the internet because the .htaccess file does not work.'));?><br>
- <?php print_unescaped($l->t('For information how to properly configure your server, please see the <a href="http://doc.owncloud.org/server/5.0/admin_manual/installation.html" target="_blank">documentation</a>.'));?></p>
+ <?php print_unescaped($l->t(
+ 'For information how to properly configure your server, please see the <a href="%s" target="_blank">documentation</a>.',
+ $defaults->getDocBaseUrl().'/server/5.0/admin_manual/installation.html'
+ )); ?></p>
</fieldset>
<?php endif; ?>
<fieldset id="adminaccount">