aboutsummaryrefslogtreecommitdiffstats
path: root/mod/search.php
diff options
context:
space:
mode:
authorjeroenpraat <jeroenpraat@xs4all.nl>2015-10-26 14:05:45 +0100
committerjeroenpraat <jeroenpraat@xs4all.nl>2015-10-26 14:05:45 +0100
commit5e28b1216e1a44b60c1d1cf33d069b1043653103 (patch)
treeee06d2123028e96b4f76070da0d7afe58dc5ac37 /mod/search.php
parente858ee811b62f46ffc2f2ab655b6f1bc796ecbc0 (diff)
downloadvolse-hubzilla-5e28b1216e1a44b60c1d1cf33d069b1043653103.tar.gz
volse-hubzilla-5e28b1216e1a44b60c1d1cf33d069b1043653103.tar.bz2
volse-hubzilla-5e28b1216e1a44b60c1d1cf33d069b1043653103.zip
Added a few generic-content-wrapper-styled classes and a button position fixed for lostpass. mod/search probably needs a .tpl in the future, but I don't know how to that.
Diffstat (limited to 'mod/search.php')
-rw-r--r--mod/search.php4
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;
}