diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-10-26 17:00:09 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-10-26 17:00:09 -0700 |
commit | be98466b0dd814b7c20c1ab68bc2f3ef34ed282c (patch) | |
tree | 9e420166d400bc27ef6f06776f31ac57fda6fbfe /mod | |
parent | 0fd60d1e80393eb1f1d778c7ce8dfec9fb86eda5 (diff) | |
parent | 35857931efa5fb9fa3fc660f4992879249ce5f0b (diff) | |
download | volse-hubzilla-be98466b0dd814b7c20c1ab68bc2f3ef34ed282c.tar.gz volse-hubzilla-be98466b0dd814b7c20c1ab68bc2f3ef34ed282c.tar.bz2 volse-hubzilla-be98466b0dd814b7c20c1ab68bc2f3ef34ed282c.zip |
Merge https://github.com/redmatrix/hubzilla into pending_merge
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; } |