diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-12-14 14:41:09 +0100 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-12-14 14:41:09 +0100 |
commit | cde74fe2482ff9ecdf997b78250557bba3286588 (patch) | |
tree | 5b37b3446fb2dac8162de61f701b7d96379ae4de /settings/templates/help.php | |
parent | 5689c78ee6a27cf51c8234bec0217801d389d24c (diff) | |
download | nextcloud-server-cde74fe2482ff9ecdf997b78250557bba3286588.tar.gz nextcloud-server-cde74fe2482ff9ecdf997b78250557bba3286588.zip |
make it more readable
Diffstat (limited to 'settings/templates/help.php')
-rw-r--r-- | settings/templates/help.php | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/settings/templates/help.php b/settings/templates/help.php index 473219024b7..b697905f7ef 100644 --- a/settings/templates/help.php +++ b/settings/templates/help.php @@ -1,9 +1,13 @@ <div id="controls"> - <?php if($_['admin']) { ?><a class="button newquestion <?php echo($_['style1']); ?>" href="<?php echo($_['url1']); ?>"><?php echo $l->t( 'User Documentation' ); ?></a><?php } ?> - <?php if($_['admin']) { ?><a class="button newquestion <?php echo($_['style2']); ?>" href="<?php echo($_['url2']); ?>"><?php echo $l->t( 'Administrator Documentation' ); ?></a><?php } ?> + <?php if($_['admin']) { ?> + <a class="button newquestion <?php echo($_['style1']); ?>" href="<?php echo($_['url1']); ?>"><?php echo $l->t( 'User Documentation' ); ?></a> + <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> - <?php if($_['admin']) { ?><a class="button newquestion" href="https://github.com/owncloud/core/issues" target="_blank"><?php echo $l->t( 'Bugtracker' ); ?></a><?php } ?> + <?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 /> |