diff options
author | jeroenpraat <jeroenpraat@xs4all.nl> | 2015-12-15 21:00:40 +0100 |
---|---|---|
committer | jeroenpraat <jeroenpraat@xs4all.nl> | 2015-12-15 21:00:40 +0100 |
commit | 5a59cd9b8cd6e0c00260f47c50e5433b070155d1 (patch) | |
tree | 3dc7ae892b2f6e16874640fb62d9071ac7cd3862 /mod/help.php | |
parent | ba463afbdcded70b88a48d76276d837a7e78ef0c (diff) | |
download | volse-hubzilla-5a59cd9b8cd6e0c00260f47c50e5433b070155d1.tar.gz volse-hubzilla-5a59cd9b8cd6e0c00260f47c50e5433b070155d1.tar.bz2 volse-hubzilla-5a59cd9b8cd6e0c00260f47c50e5433b070155d1.zip |
Invitation only added to the admin site page. Plus css wrapper class to docu search.
Diffstat (limited to 'mod/help.php')
-rw-r--r-- | mod/help.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/help.php b/mod/help.php index 16ec069a7..c4549a2bd 100644 --- a/mod/help.php +++ b/mod/help.php @@ -143,7 +143,8 @@ function help_content(&$a) { nav_set_selected('help'); if($_REQUEST['search']) { - + + $o .= '<div id="help-content" class="generic-content-wrapper">'; $o .= '<h2>' . t('Documentation Search') . ' - ' . htmlspecialchars($_REQUEST['search']) . '</h2>'; $r = search_doc_files($_REQUEST['search']); @@ -160,6 +161,7 @@ function help_content(&$a) { } $o .= '</ul>'; + $o .= '</div>'; } return $o; } |