aboutsummaryrefslogtreecommitdiffstats
path: root/settings/templates/help.php
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-08-20 05:07:58 +0200
committerJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-08-20 05:07:58 +0200
commitd9aae20003eb670b7bf86708016473969088066a (patch)
treee51450959802c1d32ecbcdeb0036efdc0842c2d1 /settings/templates/help.php
parentc2f0fe51c427374e918b72c28c521df27e614cae (diff)
downloadnextcloud-server-d9aae20003eb670b7bf86708016473969088066a.tar.gz
nextcloud-server-d9aae20003eb670b7bf86708016473969088066a.zip
more valid HTML, alt attributes, refactored pagenavi etc.
Diffstat (limited to 'settings/templates/help.php')
-rw-r--r--settings/templates/help.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/templates/help.php b/settings/templates/help.php
index 31f6101c1ef..d44438add9b 100644
--- a/settings/templates/help.php
+++ b/settings/templates/help.php
@@ -1,13 +1,13 @@
<?php if(is_null($_["kbe"])):?>
<div class="personalblock">
- <p><?php echo $l->t('Problems connecting to help database.');?>
- <a href="http://apps.owncloud.com/kb"><?php echo $l->t('Go there manually.');?></a>
+ <p><?php echo $l->t('Problems connecting to help database.');?></p>
+ <p><a href="http://apps.owncloud.com/kb"><?php echo $l->t('Go there manually.');?></a></p>
</div>
<?php else:?>
<?php foreach($_["kbe"] as $kb): ?>
<div class="personalblock">
<?php if($kb["preview1"] <> "") { echo('<img class="preview" src="'.$kb["preview1"].'" />'); } ?>
- <p><strong><?php if($kb['detailpage']<>'') echo('<p><a target="_blank" href="'.$kb['detailpage'].'"><strong>'.$kb["name"].'</strong></a></p>');?></strong></p>
+ <?php if($kb['detailpage']<>'') echo('<p><a target="_blank" href="'.$kb['detailpage'].'"><strong>'.$kb["name"].'</strong></a></p>');?>
<p><?php echo $kb['description'];?></p>
<?php if($kb['answer']<>'') echo('<p><strong>'.$l->t('Answer').':</strong><p>'.$kb['answer'].'</p>');?>
</div>