diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-10-26 14:20:06 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-10-26 14:20:06 +0100 |
commit | 4fb9571136eaa659cfe5cdfd9185acd92be527eb (patch) | |
tree | 282bd63e6ec54bc5230d898e272a316b857d1e97 /mod | |
parent | e70bb371d91ac14f6c22868d4fcc76208bdace02 (diff) | |
parent | 2099ac06155cfbbfec5040b172b3d88bdf610ed2 (diff) | |
download | volse-hubzilla-4fb9571136eaa659cfe5cdfd9185acd92be527eb.tar.gz volse-hubzilla-4fb9571136eaa659cfe5cdfd9185acd92be527eb.tar.bz2 volse-hubzilla-4fb9571136eaa659cfe5cdfd9185acd92be527eb.zip |
Merge branch 'master' of https://github.com/redmatrix/hubzilla
Diffstat (limited to 'mod')
-rw-r--r-- | mod/search.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/search.php b/mod/search.php index ce8357fb9..a0085fca9 100644 --- a/mod/search.php +++ b/mod/search.php @@ -35,6 +35,8 @@ function search_content(&$a,$update = 0, $load = false) { $o = '<div id="live-search"></div>' . "\r\n"; + $o = '<div class="generic-content-wrapper-styled">' . "\r\n"; + $o .= '<h3>' . t('Search') . '</h3>'; if(x($a->data,'search')) @@ -212,6 +214,8 @@ function search_content(&$a,$update = 0, $load = false) { $o .= conversation($a,$items,'search',$update,'client'); + $o .= '</div>'; + return $o; } |