Skip to content

Commit

Permalink
Update simpleSearchForm.phtml
Browse files Browse the repository at this point in the history
  • Loading branch information
vgerlach authored May 13, 2024
1 parent 3c50faf commit 7dcba03
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/solrsearch/views/scripts/index/simpleSearchForm.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ if ($this->jQueryEnabled()) {
<form id="form-search" action="<?= $this->url(['module' => 'solrsearch', 'controller' => 'dispatch', 'action' => 'index'], null, true); ?>" method="post">
<div id="fieldset-search" class="fieldset-wrapper">
<fieldset>
<div id="edit-search-wrapper" class="form-item">
<input type="text" size="30" name="query" id="edit-search" class="form-text" value="<?= $this->q !== null ? htmlspecialchars($this->q) : '' ?>" />
<div id="edit-search-wrapper" class="form-item" label=<?= $this->translate('search_title'); ?> title=<?= $this->translate('search_title'); ?>>
<input type="text" size="30" name="query" id="edit-search" label=<?= $this->translate('search_title'); ?> title=<?= $this->translate('search_title'); ?> class="form-text" value="<?= $this->q !== null ? htmlspecialchars($this->q) : '' ?>" />
</div>
<div id="edit-submit-search-wrapper" class="form-item">
<div id="edit-submit-search-wrapper" class="form-item" label=<?= $this->translate('search_symbol_title'); ?> title=<?= $this->translate('search_symbol_title'); ?>>
<span class="form-submit-wrapper"><input type="submit" id="edit-submit-search" class="form-submit" value="<?= $this->translate('solrsearch_searchaction'); ?>" /></span>
</div>
</fieldset>
Expand Down

0 comments on commit 7dcba03

Please sign in to comment.