aboutsummaryrefslogtreecommitdiffstats
path: root/mod/help.php
diff options
context:
space:
mode:
authorjeroenpraat <jeroenpraat@xs4all.nl>2015-12-15 21:00:40 +0100
committerjeroenpraat <jeroenpraat@xs4all.nl>2015-12-15 21:00:40 +0100
commit5a59cd9b8cd6e0c00260f47c50e5433b070155d1 (patch)
tree3dc7ae892b2f6e16874640fb62d9071ac7cd3862 /mod/help.php
parentba463afbdcded70b88a48d76276d837a7e78ef0c (diff)
downloadvolse-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.php4
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;
}