aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-02-04 18:36:36 -0800
committerredmatrix <git@macgirvin.com>2016-02-04 18:36:36 -0800
commita6e5d26aea964c3297d9182a518b7949858fc805 (patch)
tree7f2852f6e15ab4ed9d4a811b0e0b0b8dfbf6e1ef /mod
parentd586f64e406306a9fc55e55fa6d153e46fe0796c (diff)
parenta0900ba052d2e6f9b77236782934b8ef03927679 (diff)
downloadvolse-hubzilla-a6e5d26aea964c3297d9182a518b7949858fc805.tar.gz
volse-hubzilla-a6e5d26aea964c3297d9182a518b7949858fc805.tar.bz2
volse-hubzilla-a6e5d26aea964c3297d9182a518b7949858fc805.zip
Merge https://github.com/redmatrix/hubzilla into pending_merge
Diffstat (limited to 'mod')
-rw-r--r--mod/help.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/help.php b/mod/help.php
index e1c6fede8..1539978f7 100644
--- a/mod/help.php
+++ b/mod/help.php
@@ -145,7 +145,10 @@ function help_content(&$a) {
if($_REQUEST['search']) {
$o .= '<div id="help-content" class="generic-content-wrapper">';
+ $o .= '<div class="section-title-wrapper">';
$o .= '<h2>' . t('Documentation Search') . ' - ' . htmlspecialchars($_REQUEST['search']) . '</h2>';
+ $o .= '</div>';
+ $o .= '<div class="section-content-wrapper">';
$r = search_doc_files($_REQUEST['search']);
if($r) {
@@ -162,6 +165,7 @@ function help_content(&$a) {
}
$o .= '</ul>';
$o .= '</div>';
+ $o .= '</div>';
}
return $o;
}