diff options
author | sarven <csarven@plantard.controlezvous.ca> | 2009-01-24 00:58:12 +0000 |
---|---|---|
committer | sarven <csarven@plantard.controlezvous.ca> | 2009-01-24 00:58:12 +0000 |
commit | 18eb40c98807e8c51e6a695e00a7ba03c004ac5f (patch) | |
tree | 9f860c9795e6c38e10da4f8c43dbe7d8e565d4aa /lib | |
parent | 57ba50c4c8fa972294ccea941c8ee42adc6c5a1b (diff) |
Search form markup and style
Diffstat (limited to 'lib')
-rw-r--r-- | lib/searchaction.php | 16 | ||||
-rw-r--r-- | lib/searchgroupnav.php | 2 |
2 files changed, 11 insertions, 7 deletions
diff --git a/lib/searchaction.php b/lib/searchaction.php index 70e63146a..fdfb8dc5a 100644 --- a/lib/searchaction.php +++ b/lib/searchaction.php @@ -114,17 +114,21 @@ class SearchAction extends Action $q = $this->trimmed('q'); $page = $this->trimmed('page', 1); $this->elementStart('form', array('method' => 'get', - 'id' => 'login', + 'id' => 'form_search', + 'class' => 'form_settings', 'action' => common_local_url($this->trimmed('action')))); - $this->elementStart('p'); + $this->elementStart('fieldset'); + $this->element('legend', null, _('Search site')); + $this->elementStart('ul', 'form_data'); + $this->elementStart('li'); if (!isset($config['site']['fancy']) || !$config['site']['fancy']) { $this->hidden('action', $this->trimmed('action')); } - $this->input('q', '', $q); - $this->text(' '); + $this->input('q', 'Keyword(s)', $q); $this->submit('search', 'Search'); - - $this->elementEnd('p'); + $this->elementEnd('li'); + $this->elementEnd('ul'); + $this->elementEnd('fieldset'); $this->elementEnd('form'); if ($q) { $this->showResults($q, $page); diff --git a/lib/searchgroupnav.php b/lib/searchgroupnav.php index 9fe3c2379..3ba3f9cd9 100644 --- a/lib/searchgroupnav.php +++ b/lib/searchgroupnav.php @@ -82,7 +82,7 @@ class SearchGroupNav extends Widget $this->out->menuItem(common_local_url('noticesearch', $args), _('Notice'), _('Find content of notices'), $action_name == 'noticesearch', 'nav_search_notice'); $this->out->menuItem(common_local_url('groupsearch', $args), _('Group'), - _('Find groups on this site'), $action_name == 'groupsearch', 'nav_search_notice'); + _('Find groups on this site'), $action_name == 'groupsearch', 'nav_search_group'); $this->action->elementEnd('ul'); } } |