]> source.dussan.org Git - nextcloud-server.git/commitdiff
show the build number if on the daily build update channel
authorFrank Karlitschek <frank@owncloud.org>
Sun, 24 Nov 2013 15:46:07 +0000 (16:46 +0100)
committerFrank Karlitschek <frank@owncloud.org>
Sun, 24 Nov 2013 15:46:07 +0000 (16:46 +0100)
settings/templates/admin.php
settings/templates/personal.php

index f655a14be87d04424bb27b512d5442abf2cc5df9..0e13f2f46b68f839759e3294c5cb458fb5000934 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().')'); ?>
+       <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()); } ?>
 <?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 9d21e18e73cbeb6a25b33b1ae463dd3951ecdc1f..97b590a96ea11040dfedcc5b1d28574fd30480b1 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().')'); ?><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:'); echo(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; ?>