diff options
author | mrjive <mrjive@mrjive.it> | 2016-02-03 14:02:34 -0800 |
---|---|---|
committer | mrjive <mrjive@mrjive.it> | 2016-02-03 14:02:34 -0800 |
commit | f9545dc35916648f88fa04c7003abe1196f38484 (patch) | |
tree | 3c3333f2893f7ecee4f9c61ea40c48939043abfc /mod/help.php | |
parent | e527a52f6a123b695775a24fdeb64d0a5ab00df9 (diff) | |
download | volse-hubzilla-f9545dc35916648f88fa04c7003abe1196f38484.tar.gz volse-hubzilla-f9545dc35916648f88fa04c7003abe1196f38484.tar.bz2 volse-hubzilla-f9545dc35916648f88fa04c7003abe1196f38484.zip |
Added section-title-wrapper and section-conent-wrapper to search result page in /help
Diffstat (limited to 'mod/help.php')
-rw-r--r-- | mod/help.php | 4 |
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; } |