Extra single-quote in "Search"

A trailing singe-quote has found its way into the search button value,
resulting in the button displaying "Search'" instead of "Search".
This commit is contained in:
Gennady Kovshenin 2013-07-01 17:38:44 +06:00
parent e620d8dd09
commit ddebe0f15f
1 changed files with 1 additions and 1 deletions

View File

@ -10,5 +10,5 @@
<span class="screen-reader-text"><?php _ex( 'Search for:', 'label', '_s' ); ?></span>
<input type="search" class="search-field" placeholder="<?php echo esc_attr_x( 'Search &hellip;', 'placeholder', '_s' ); ?>" value="<?php echo esc_attr( get_search_query() ); ?>" name="s" title="<?php _ex( 'Search for:', 'label', '_s' ); ?>" />
</label>
<input type="submit" class="search-submit" value="<?php echo esc_attr_x( 'Search', 'submit button', '_s' ); ?>'" />
<input type="submit" class="search-submit" value="<?php echo esc_attr_x( 'Search', 'submit button', '_s' ); ?>" />
</form>