Browse Source

show the channel. Also mark git as git channel so that someone can see where this build comes from

tags/v6.0.0alpha2
Frank Karlitschek 10 years ago
parent
commit
7cf81f2d12
3 changed files with 3 additions and 3 deletions
  1. 1
    1
      settings/templates/admin.php
  2. 1
    1
      settings/templates/personal.php
  3. 1
    1
      version.php

+ 1
- 1
settings/templates/admin.php View File

@@ -248,7 +248,7 @@ endfor;?>

<fieldset class="personalblock">
<h2><?php p($l->t('Version'));?></h2>
<strong><?php p($theme->getTitle()); ?></strong> <?php p(OC_Util::getVersionString()); ?>
<strong><?php p($theme->getTitle()); ?></strong> <?php p(OC_Util::getVersionString().' ('.OC_Util::getChannel().')'); ?>
<?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>.')); ?>

+ 1
- 1
settings/templates/personal.php View 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()); ?><br/>
<strong><?php p($theme->getName()); ?></strong> <?php p(OC_Util::getVersionString().' ('.OC_Util::getChannel().')'); ?><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; ?>

+ 1
- 1
version.php View File

@@ -10,7 +10,7 @@ $OC_VersionString='6.0 alpha 1';
$OC_Edition='';

// The ownCloud channel
$OC_Channel='';
$OC_Channel='git';

// The build number
$OC_Build='';

Loading…
Cancel
Save