Passed
Push — master ( db72e4...12301f )
by Fernando
03:07
created
woocommerce/product-searchform.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,15 +16,15 @@
 block discarded – undo
16 16
  * @version 2.5.0
17 17
  */
18 18
 
19
-if ( ! defined( 'ABSPATH' ) ) {
19
+if ( ! defined('ABSPATH')) {
20 20
 	exit;
21 21
 }
22 22
 
23 23
 ?>
24
-<form role="search" method="get" class="search-form form-inline" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>">
24
+<form role="search" method="get" class="search-form form-inline" id="searchform" action="<?php echo esc_url(home_url('/')); ?>">
25 25
 	<div class="input-group">
26
-		<input type="search" value="<?php if ( is_search() ) { echo get_search_query(); } ?>" name="s" class="search-field form-control" placeholder="<?php esc_attr_e( 'Search', 'lsx' ); ?> <?php echo esc_attr( get_bloginfo( 'name' ) ); ?>">
27
-		<label class="hide"><?php esc_attr_e( 'Search for:', 'lsx' ); ?></label>
26
+		<input type="search" value="<?php if (is_search()) { echo get_search_query(); } ?>" name="s" class="search-field form-control" placeholder="<?php esc_attr_e('Search', 'lsx'); ?> <?php echo esc_attr(get_bloginfo('name')); ?>">
27
+		<label class="hide"><?php esc_attr_e('Search for:', 'lsx'); ?></label>
28 28
 
29 29
 		<span class="input-group-btn">
30 30
 			<button type="submit" class="search-submit btn btn-default"><span class="fa fa-search"></span></button>
Please login to merge, or discard this patch.