diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-12-13 11:08:12 +0100 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-12-13 11:08:12 +0100 |
commit | 2330d6bcc7a178d15b74eb8352f86e778afd717d (patch) | |
tree | 70f5e4ca4ba2785dba9a94616666b26a5287f8ba /settings/templates/help.php | |
parent | 89bbabd77bac2d21739b232e6315f2f09b9c9b56 (diff) | |
download | nextcloud-server-2330d6bcc7a178d15b74eb8352f86e778afd717d.tar.gz nextcloud-server-2330d6bcc7a178d15b74eb8352f86e778afd717d.zip |
show the link to the issue tracker only for Admins as discussed with Björn and Jan.
Diffstat (limited to 'settings/templates/help.php')
-rw-r--r-- | settings/templates/help.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/help.php b/settings/templates/help.php index 06f53746c29..473219024b7 100644 --- a/settings/templates/help.php +++ b/settings/templates/help.php @@ -3,7 +3,7 @@ <?php if($_['admin']) { ?><a class="button newquestion <?php echo($_['style2']); ?>" href="<?php echo($_['url2']); ?>"><?php echo $l->t( 'Administrator Documentation' ); ?></a><?php } ?> <a class="button newquestion" href="http://owncloud.org/support" target="_blank"><?php echo $l->t( 'Online Documentation' ); ?></a> <a class="button newquestion" href="http://forum.owncloud.org" target="_blank"><?php echo $l->t( 'Forum' ); ?></a> - <a class="button newquestion" href="https://github.com/owncloud/core/issues" target="_blank"><?php echo $l->t( 'Bugtracker' ); ?></a> + <?php if($_['admin']) { ?><a class="button newquestion" href="https://github.com/owncloud/core/issues" target="_blank"><?php echo $l->t( 'Bugtracker' ); ?></a><?php } ?> <a class="button newquestion" href="http://owncloud.com" target="_blank"><?php echo $l->t( 'Commercial Support' ); ?></a> </div> <br /><br /> |