Invitation only added to the admin site page. Plus css wrapper class to docu search.

This commit is contained in:
jeroenpraat
2015-12-15 21:00:40 +01:00
parent ba463afbdc
commit 5a59cd9b8c
3 changed files with 9 additions and 2 deletions

View File

@@ -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;
}