]> source.dussan.org Git - nextcloud-server.git/commitdiff
replace echo with p
authorFrank Karlitschek <frank@owncloud.org>
Sun, 24 Nov 2013 16:17:10 +0000 (17:17 +0100)
committerFrank Karlitschek <frank@owncloud.org>
Sun, 24 Nov 2013 16:17:10 +0000 (17:17 +0100)
settings/templates/admin.php
settings/templates/personal.php

index 0e13f2f46b68f839759e3294c5cb458fb5000934..de723e4cadda4d0ede8a861a19013254b41d54a9 100644 (file)
@@ -264,7 +264,7 @@ if (!$_['internetconnectionworking']) {
 
 <fieldset class="personalblock">
        <h2><?php p($l->t('Version'));?></h2>
-       <strong><?php p($theme->getTitle()); ?></strong> <?php p(OC_Util::getVersionString().' ('.OC_Util::getChannel().')'); if(!empty(OC_Util::getBuild()) and OC_Util::getChannel()=='daily') { p(' Build:'); echo(OC_Util::getBuild()); } ?>
+       <strong><?php p($theme->getTitle()); ?></strong> <?php p(OC_Util::getVersionString().' ('.OC_Util::getChannel().')'); if(!empty(OC_Util::getBuild()) and OC_Util::getChannel()=='daily') { p(' Build:'); p(OC_Util::getBuild()); } ?>
 <?php if (OC_Util::getEditionString() === ''): ?>
        <p>
                <?php print_unescaped($l->t('Developed by the <a href="http://ownCloud.org/contact" target="_blank">ownCloud community</a>, the <a href="https://github.com/owncloud" target="_blank">source code</a> is licensed under the <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank"><abbr title="Affero General Public License">AGPL</abbr></a>.')); ?>
index 97b590a96ea11040dfedcc5b1d28574fd30480b1..a8f2fa8a5575d149533c120627544f5800d978af 100644 (file)
@@ -167,7 +167,7 @@ if($_['passwordChangeSupported']) {
 
 <fieldset class="personalblock">
        <h2><?php p($l->t('Version'));?></h2>
-       <strong><?php p($theme->getName()); ?></strong> <?php p(OC_Util::getVersionString().' ('.OC_Util::getChannel().')'); if(!empty(OC_Util::getBuild()) and OC_Util::getChannel()=='daily') { p(' Build:'); echo(OC_Util::getBuild()); } ?><br />
+       <strong><?php p($theme->getName()); ?></strong> <?php p(OC_Util::getVersionString().' ('.OC_Util::getChannel().')'); if(!empty(OC_Util::getBuild()) and OC_Util::getChannel()=='daily') { p(' Build:'); p(OC_Util::getBuild()); } ?><br />
 <?php if (OC_Util::getEditionString() === ''): ?>
        <?php print_unescaped($l->t('Developed by the <a href="http://ownCloud.org/contact" target="_blank">ownCloud community</a>, the <a href="https://github.com/owncloud" target="_blank">source code</a> is licensed under the <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank"><abbr title="Affero General Public License">AGPL</abbr></a>.')); ?>
 <?php endif; ?>