Passed
Pull Request — master (#33)
by
unknown
02:13
created
inc/template-tags.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -232,7 +232,7 @@
 block discarded – undo
232 232
 			$html .= 'col-md-3 widget-area';
233 233
 			echo $html; // WPCS: XSS OK.
234 234
 		} elseif ( ( is_page_template( 'page-templates/left-sidebar.php' ) && is_active_sidebar( 'sidebar-left' ) ) ||
235
-		           ( is_page_template( 'page-templates/right-sidebar.php' ) && is_active_sidebar( 'sidebar-right' ) ) ) {
235
+				   ( is_page_template( 'page-templates/right-sidebar.php' ) && is_active_sidebar( 'sidebar-right' ) ) ) {
236 236
 			$html .= 'col-md-4 widget-area';
237 237
 			echo $html; // WPCS: XSS OK.
238 238
 		} elseif ( ( 'right' === $spurs_sidebar_position || 'left' === $spurs_sidebar_position ) && ( is_active_sidebar( 'sidebar-right' ) || is_active_sidebar( 'sidebar-left' ) ) ) {
Please login to merge, or discard this patch.
inc/custom-comments.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,15 +30,15 @@
 block discarded – undo
30 30
 		$fields    = array(
31 31
 			'author'  => '<div class="form-group comment-form-author"><label for="author">' . __( 'Name',
32 32
 					'spurs' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' .
33
-			             '<input class="form-control" id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . '></div>',
33
+						 '<input class="form-control" id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . '></div>',
34 34
 			'email'   => '<div class="form-group comment-form-email"><label for="email">' . __( 'Email',
35 35
 					'spurs' ) . ( $req ? ' <span class="required">*</span>' : '' ) . '</label> ' .
36
-			             '<input class="form-control" id="email" name="email" ' . ( $html5 ? 'type="email"' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . '></div>',
36
+						 '<input class="form-control" id="email" name="email" ' . ( $html5 ? 'type="email"' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . '></div>',
37 37
 			'url'     => '<div class="form-group comment-form-url"><label for="url">' . __( 'Website',
38 38
 					'spurs' ) . '</label> ' .
39
-			             '<input class="form-control" id="url" name="url" ' . ( $html5 ? 'type="url"' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30"></div>',
39
+						 '<input class="form-control" id="url" name="url" ' . ( $html5 ? 'type="url"' : 'type="text"' ) . ' value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30"></div>',
40 40
 			'cookies' => '<div class="form-group form-check comment-form-cookies-consent"><input class="form-check-input" id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes"' . $consent . ' /> ' .
41
-			             '<label class="form-check-label" for="wp-comment-cookies-consent">' . __( 'Save my name, email, and website in this browser for the next time I comment', 'spurs' ) . '</label></div>',
41
+						 '<label class="form-check-label" for="wp-comment-cookies-consent">' . __( 'Save my name, email, and website in this browser for the next time I comment', 'spurs' ) . '</label></div>',
42 42
 		);
43 43
 
44 44
 		return $fields;
Please login to merge, or discard this patch.