diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-07-24 12:04:18 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-07-24 12:04:18 +0200 |
commit | 003ae7b9165b6493abe75d1d81b5a763efef7280 (patch) | |
tree | 0fbd70814f51427aa64b51906d4837c4d5fc57a5 /core/templates/installation.php | |
parent | d70bb55e1bc44842dac07e70b39878418f069782 (diff) | |
download | nextcloud-server-003ae7b9165b6493abe75d1d81b5a763efef7280.tar.gz nextcloud-server-003ae7b9165b6493abe75d1d81b5a763efef7280.zip |
use OC_Defaults directly from the template
Diffstat (limited to 'core/templates/installation.php')
-rw-r--r-- | core/templates/installation.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index a87853cbef3..6de67a83d42 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 %s securely.', $defaults->getName() )); ?></p> + <?php p($l->t('Please update your PHP installation to use %s securely.', $theme->getName() )); ?></p> </fieldset> <?php endif; ?> <?php if(!$_['secureRNG']): ?> @@ -39,7 +39,7 @@ <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="%s" target="_blank">documentation</a>.', - $defaults->getDocBaseUrl().'/server/5.0/admin_manual/installation.html' + $theme->getDocBaseUrl().'/server/5.0/admin_manual/installation.html' )); ?></p> </fieldset> <?php endif; ?> |