Skip to content

Commit

Permalink
Fix a problem with the merge in searchform.php
Browse files Browse the repository at this point in the history
  • Loading branch information
benlk committed Mar 17, 2016
1 parent 31b2171 commit 32980f9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions searchform.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
?>
<form class="form-search" role="search" method="get" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<div class="input-append">
<input type="text" placeholder="<?php _e('Search', 'largo'); ?>" class="searchbox search-query" value="<?php the_search_query(); ?>" name="s" />
<input type="submit" value="<?php _e('Go', 'largo'); ?>" name="search submit" class="search-submit btn">
<input type="text" placeholder="<?php _e('Search', 'largo'); ?>" class="searchbox search-query" value="<?php the_search_query(); ?>" name="s" /><button type="submit" name="search submit" class="search-submit btn"><?php _e('Go', 'largo'); ?></button>
</div>
</form>

0 comments on commit 32980f9

Please sign in to comment.