aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjörn Schießle <bjoern@schiessle.org>2016-08-09 17:58:44 +0200
committerGitHub <noreply@github.com>2016-08-09 17:58:44 +0200
commitf3777f8271944103f780bd9869dbcc2f807ae901 (patch)
tree9927ae13e6a30b243b4812bb57cf34a0224f8c0c
parentedeb41ccaff186b116852df4caf8df144db682c8 (diff)
parent3f859d8a3825168a286b7a9dd9ba3b915800d81a (diff)
downloadnextcloud-server-f3777f8271944103f780bd9869dbcc2f807ae901.tar.gz
nextcloud-server-f3777f8271944103f780bd9869dbcc2f807ae901.zip
Merge pull request #781 from nextcloud/personal_licence_title
Remove AGPL title
-rw-r--r--settings/templates/settings.development.notice.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/settings/templates/settings.development.notice.php b/settings/templates/settings.development.notice.php
index 4e6bbd8db9f..a96661e5de1 100644
--- a/settings/templates/settings.development.notice.php
+++ b/settings/templates/settings.development.notice.php
@@ -1,4 +1,6 @@
-<?php if (OC_Util::getEditionString() === ''): ?>
+<?php
+/** @var \OCP\IL10N $l */
+if (OC_Util::getEditionString() === ''): ?>
<p>
<?php print_unescaped(str_replace(
[
@@ -13,7 +15,7 @@
'<a href="https://www.gnu.org/licenses/agpl-3.0.html" target="_blank" rel="noreferrer">',
'</a>',
],
- $l->t('Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title="Affero General Public License">AGPL</abbr>{linkclose}.')
+ $l->t('Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}.')
)); ?>
</p>
<?php endif; ?>