Passed
Push — master ( db96e2...c66fca )
by Warwick
52s
created
footer.php 2 patches
Braces   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,10 @@
 block discarded – undo
20 20
 					<div class="col-sm-12">
21 21
 						<?php lsx_footer_top(); ?>
22 22
 
23
-						<p class="credit <?php if ( has_nav_menu( 'social' ) || has_nav_menu( 'footer' ) ) echo 'credit-float'; ?>">
23
+						<p class="credit <?php if ( has_nav_menu( 'social' ) || has_nav_menu( 'footer' ) ) {
24
+	echo 'credit-float';
25
+}
26
+?>">
24 27
 							<?php
25 28
 								printf(
26 29
 									/* Translators: 1: current year, 2: blog name */
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -20,21 +20,21 @@  discard block
 block discarded – undo
20 20
 					<div class="col-sm-12">
21 21
 						<?php lsx_footer_top(); ?>
22 22
 
23
-						<p class="credit <?php if ( has_nav_menu( 'social' ) || has_nav_menu( 'footer' ) ) echo 'credit-float'; ?>">
23
+						<p class="credit <?php if (has_nav_menu('social') || has_nav_menu('footer')) echo 'credit-float'; ?>">
24 24
 							<?php
25 25
 								printf(
26 26
 									/* Translators: 1: current year, 2: blog name */
27
-									esc_html__( '&#169; %1$s %2$s All Rights Reserved', 'lsx' ),
28
-									esc_html( date_i18n( 'Y' ) ),
29
-									esc_html( get_bloginfo( 'name' ) )
27
+									esc_html__('&#169; %1$s %2$s All Rights Reserved', 'lsx'),
28
+									esc_html(date_i18n('Y')),
29
+									esc_html(get_bloginfo('name'))
30 30
 								);
31 31
 							?>
32 32
 
33
-							<?php if ( apply_filters( 'lsx_credit_link', true ) ) : ?>
33
+							<?php if (apply_filters('lsx_credit_link', true)) : ?>
34 34
 								<?php
35 35
 									printf(
36 36
 										/* Translators: 1: theme name, 2: author name and link */
37
-										esc_html__( ' | %1$s is a WordPress theme developed by %2$s.', 'lsx' ),
37
+										esc_html__(' | %1$s is a WordPress theme developed by %2$s.', 'lsx'),
38 38
 										'LSX',
39 39
 										'<a href="https://www.lsdev.biz/" rel="nofollow noreferrer noopener" title="LightSpeed WordPress Development - Unlocking the full value of your business, online" rel="author nofollow noopener noreferrer" >LightSpeed</a>'
40 40
 									);
@@ -42,24 +42,24 @@  discard block
 block discarded – undo
42 42
 							<?php endif; ?>
43 43
 						</p>
44 44
 
45
-						<?php if ( has_nav_menu( 'social' ) ) : ?>
45
+						<?php if (has_nav_menu('social')) : ?>
46 46
 							<nav id="social-navigation" class="social-navigation">
47 47
 								<?php
48
-									wp_nav_menu( array(
48
+									wp_nav_menu(array(
49 49
 										'theme_location' => 'social',
50 50
 										'depth'          => 1,
51
-									) );
51
+									));
52 52
 								?>
53 53
 							</nav><!-- .social-navigation -->
54 54
 						<?php endif; ?>
55 55
 
56
-						<?php if ( has_nav_menu( 'footer' ) ) : ?>
56
+						<?php if (has_nav_menu('footer')) : ?>
57 57
 							<nav id="footer-navigation" class="footer-navigation">
58 58
 								<?php
59
-									wp_nav_menu( array(
59
+									wp_nav_menu(array(
60 60
 										'theme_location' => 'footer',
61 61
 										'depth'          => 1,
62
-									) );
62
+									));
63 63
 								?>
64 64
 							</nav><!-- .footer-navigation -->
65 65
 						<?php endif; ?>
Please login to merge, or discard this patch.
index.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
 <?php lsx_content_wrap_before(); ?>
11 11
 
12
-<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>">
12
+<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>">
13 13
 
14 14
 	<?php lsx_content_before(); ?>
15 15
 
@@ -17,13 +17,13 @@  discard block
 block discarded – undo
17 17
 
18 18
 		<?php lsx_content_top(); ?>
19 19
 
20
-		<?php if ( have_posts() ) : ?>
20
+		<?php if (have_posts()) : ?>
21 21
 
22 22
 			<div class="post-wrapper">
23 23
 
24
-				<?php while ( have_posts() ) : the_post(); ?>
24
+				<?php while (have_posts()) : the_post(); ?>
25 25
 
26
-					<?php get_template_part( 'partials/content', get_post_format() ); ?>
26
+					<?php get_template_part('partials/content', get_post_format()); ?>
27 27
 
28 28
 				<?php endwhile; ?>
29 29
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
 		<?php else : ?>
35 35
 
36
-			<?php get_template_part( 'partials/content', 'none' ); ?>
36
+			<?php get_template_part('partials/content', 'none'); ?>
37 37
 
38 38
 		<?php endif; ?>
39 39
 
@@ -47,6 +47,6 @@  discard block
 block discarded – undo
47 47
 
48 48
 <?php lsx_content_wrap_after(); ?>
49 49
 
50
-<?php get_sidebar( 'sidebar' ); ?>
50
+<?php get_sidebar('sidebar'); ?>
51 51
 
52 52
 <?php get_footer();
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,9 +31,12 @@
 block discarded – undo
31 31
 
32 32
 			<?php lsx_paging_nav(); ?>
33 33
 
34
-		<?php else : ?>
34
+		<?php else {
35
+	: ?>
35 36
 
36
-			<?php get_template_part( 'partials/content', 'none' ); ?>
37
+			<?php get_template_part( 'partials/content', 'none' );
38
+}
39
+?>
37 40
 
38 41
 		<?php endif; ?>
39 42
 
Please login to merge, or discard this patch.
comment.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -5,25 +5,25 @@  discard block
 block discarded – undo
5 5
  * @package lsx
6 6
  */
7 7
 
8
-if ( isset( $GLOBALS['comment_depth'] ) ) {
9
-	$depth = intval( $GLOBALS['comment_depth'] );
8
+if (isset($GLOBALS['comment_depth'])) {
9
+	$depth = intval($GLOBALS['comment_depth']);
10 10
 } else {
11 11
 	$depth = 1;
12 12
 }
13 13
 
14
-$max_depth = intval( get_option( 'thread_comments_depth' ) );
14
+$max_depth = intval(get_option('thread_comments_depth'));
15 15
 
16
-echo get_avatar( $comment, '128' );
16
+echo get_avatar($comment, '128');
17 17
 ?>
18 18
 <div class="media-body">
19 19
 	<h4 class="media-heading"><?php echo get_comment_author_link(); ?></h4>
20 20
 
21
-	<time datetime="<?php echo comment_date( 'c' ); ?>">
22
-		<a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>">
21
+	<time datetime="<?php echo comment_date('c'); ?>">
22
+		<a href="<?php echo esc_url(get_comment_link($comment->comment_ID)); ?>">
23 23
 			<?php
24 24
 				printf(
25 25
 					/* Translators: 1: post date, 2: post time */
26
-					esc_html__( '%1$s on %2$s', 'lsx' ),
26
+					esc_html__('%1$s on %2$s', 'lsx'),
27 27
 					get_comment_date(),
28 28
 					get_comment_time()
29 29
 				);
@@ -31,18 +31,18 @@  discard block
 block discarded – undo
31 31
 		</a>
32 32
 	</time>
33 33
 
34
-	<?php edit_comment_link( esc_html__( '(Edit)', 'lsx' ), '', '' ); ?>
34
+	<?php edit_comment_link(esc_html__('(Edit)', 'lsx'), '', ''); ?>
35 35
 
36
-	<?php if ( ! $comment->comment_approved ) : ?>
36
+	<?php if ( ! $comment->comment_approved) : ?>
37 37
 		<div class="alert alert-info">
38
-			<?php esc_html_e( 'Your comment is awaiting moderation.', 'lsx' ); ?>
38
+			<?php esc_html_e('Your comment is awaiting moderation.', 'lsx'); ?>
39 39
 		</div>
40 40
 	<?php endif; ?>
41 41
 
42 42
 <?php
43 43
 comment_text();
44 44
 
45
-comment_reply_link( array(
45
+comment_reply_link(array(
46 46
 	'depth'     => $depth,
47 47
 	'max_depth' => $max_depth,
48
-) );
48
+));
Please login to merge, or discard this patch.
archive.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
 <?php lsx_content_wrap_before(); ?>
11 11
 
12
-<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>">
12
+<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>">
13 13
 
14 14
 	<?php lsx_content_before(); ?>
15 15
 
@@ -17,13 +17,13 @@  discard block
 block discarded – undo
17 17
 
18 18
 		<?php lsx_content_top(); ?>
19 19
 
20
-		<?php if ( have_posts() ) : ?>
20
+		<?php if (have_posts()) : ?>
21 21
 
22 22
 			<div class="post-wrapper">
23 23
 
24
-				<?php while ( have_posts() ) : the_post(); ?>
24
+				<?php while (have_posts()) : the_post(); ?>
25 25
 
26
-					<?php get_template_part( 'partials/content', get_post_format() ); ?>
26
+					<?php get_template_part('partials/content', get_post_format()); ?>
27 27
 
28 28
 				<?php endwhile; ?>
29 29
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
 		<?php else : ?>
35 35
 
36
-			<?php get_template_part( 'partials/content', 'none' ); ?>
36
+			<?php get_template_part('partials/content', 'none'); ?>
37 37
 
38 38
 		<?php endif; ?>
39 39
 
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,9 +31,12 @@
 block discarded – undo
31 31
 
32 32
 			<?php lsx_paging_nav(); ?>
33 33
 
34
-		<?php else : ?>
34
+		<?php else {
35
+	: ?>
35 36
 
36
-			<?php get_template_part( 'partials/content', 'none' ); ?>
37
+			<?php get_template_part( 'partials/content', 'none' );
38
+}
39
+?>
37 40
 
38 41
 		<?php endif; ?>
39 42
 
Please login to merge, or discard this patch.
searchform.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -7,28 +7,28 @@
 block discarded – undo
7 7
 
8 8
 $style = 'body #searchform { display: block; }';
9 9
 
10
-if ( is_customize_preview() ) {
11
-	$search_form = get_theme_mod( 'lsx_header_search', false );
10
+if (is_customize_preview()) {
11
+	$search_form = get_theme_mod('lsx_header_search', false);
12 12
 
13
-	if ( false === $search_form ) {
13
+	if (false === $search_form) {
14 14
 		$style = 'body #searchform { display: none; }';
15 15
 	}
16 16
 }
17 17
 ?>
18 18
 
19
-<form role="search" method="get" class="search-form form-inline" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>">
19
+<form role="search" method="get" class="search-form form-inline" id="searchform" action="<?php echo esc_url(home_url('/')); ?>">
20 20
 	<div class="input-group">
21
-		<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' ) ); ?>">
22
-		<label class="hide"><?php esc_attr_e( 'Search for:', 'lsx' ); ?></label>
21
+		<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')); ?>">
22
+		<label class="hide"><?php esc_attr_e('Search for:', 'lsx'); ?></label>
23 23
 
24 24
 		<span class="input-group-btn">
25 25
 			<button type="submit" class="search-submit btn btn-default"><span class="fa fa-search"></span></button>
26 26
 		</span>
27 27
 	</div>
28 28
 
29
-	<?php if ( is_customize_preview() ) : ?>
29
+	<?php if (is_customize_preview()) : ?>
30 30
 		<style id="lsx-header-search-css">
31
-			<?php echo esc_attr( $style ); ?>
31
+			<?php echo esc_attr($style); ?>
32 32
 		</style>
33 33
 	<?php endif; ?>
34 34
 </form>
Please login to merge, or discard this patch.
page-templates/template-full-width.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,11 +20,11 @@  discard block
 block discarded – undo
20 20
 
21 21
 		<?php lsx_content_top(); ?>
22 22
 
23
-		<?php if ( have_posts() ) : ?>
23
+		<?php if (have_posts()) : ?>
24 24
 
25
-			<?php while ( have_posts() ) : the_post(); ?>
25
+			<?php while (have_posts()) : the_post(); ?>
26 26
 
27
-				<?php get_template_part( 'partials/content', 'page' ); ?>
27
+				<?php get_template_part('partials/content', 'page'); ?>
28 28
 
29 29
 			<?php endwhile; ?>
30 30
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 		<?php lsx_content_bottom(); ?>
34 34
 
35 35
 		<?php
36
-			if ( comments_open() ) {
36
+			if (comments_open()) {
37 37
 				comments_template();
38 38
 			}
39 39
 		?>
Please login to merge, or discard this patch.
page-templates/template-front-page.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -20,9 +20,9 @@  discard block
 block discarded – undo
20 20
 
21 21
 		<?php lsx_content_top(); ?>
22 22
 
23
-		<?php if ( have_posts() && ! class_exists( 'LSX_Banners' ) ) : ?>
23
+		<?php if (have_posts() && ! class_exists('LSX_Banners')) : ?>
24 24
 
25
-			<?php while ( have_posts() ) : the_post(); ?>
25
+			<?php while (have_posts()) : the_post(); ?>
26 26
 
27 27
 				<?php lsx_entry_before(); ?>
28 28
 
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
32 32
 						<?php the_content(); ?>
33 33
 
34 34
 						<?php
35
-							wp_link_pages( array(
36
-								'before' => '<nav class="page-nav"><p>' . esc_html__( 'Pages:', 'lsx' ),
35
+							wp_link_pages(array(
36
+								'before' => '<nav class="page-nav"><p>' . esc_html__('Pages:', 'lsx'),
37 37
 								'after'  => '</p></nav>',
38
-							) );
38
+							));
39 39
 						?>
40 40
 					</div><!-- .entry-content -->
41 41
 
@@ -47,11 +47,11 @@  discard block
 block discarded – undo
47 47
 
48 48
 		<?php endif; ?>
49 49
 
50
-		<?php if ( is_active_sidebar( 'sidebar-home' ) ) : ?>
50
+		<?php if (is_active_sidebar('sidebar-home')) : ?>
51 51
 
52 52
 			<div id="home-widgets">
53 53
 
54
-				<?php dynamic_sidebar( 'sidebar-home' ); ?>
54
+				<?php dynamic_sidebar('sidebar-home'); ?>
55 55
 
56 56
 			</div>
57 57
 
Please login to merge, or discard this patch.
header.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,14 +11,14 @@
 block discarded – undo
11 11
 <html <?php language_attributes(); ?>>
12 12
 	<head>
13 13
 		<?php lsx_head_top(); ?>
14
-		<meta charset="<?php bloginfo( 'charset' ); ?>">
14
+		<meta charset="<?php bloginfo('charset'); ?>">
15 15
 		<link rel="profile" href="http://gmpg.org/xfn/11">
16
-		<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
16
+		<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">
17 17
 		<?php lsx_head_bottom(); ?>
18 18
 		<?php wp_head(); ?>
19 19
 	</head>
20 20
 
21
-	<body <?php body_class( 'lsx' ); ?>>
21
+	<body <?php body_class('lsx'); ?>>
22 22
 		<?php lsx_body_top(); ?>
23 23
 
24 24
 		<div class="header-wrap">
Please login to merge, or discard this patch.
includes/hooks.php 1 patch
Spacing   +42 added lines, -42 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
  * @subpackage hooks
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
@@ -17,11 +17,11 @@  discard block
 block discarded – undo
17 17
  */
18 18
 
19 19
 function lsx_body_top() {
20
-	do_action( 'lsx_body_top' );
20
+	do_action('lsx_body_top');
21 21
 }
22 22
 
23 23
 function lsx_body_bottom() {
24
-	do_action( 'lsx_body_bottom' );
24
+	do_action('lsx_body_bottom');
25 25
 }
26 26
 
27 27
 /**
@@ -31,11 +31,11 @@  discard block
 block discarded – undo
31 31
  */
32 32
 
33 33
 function lsx_head_top() {
34
-	do_action( 'lsx_head_top' );
34
+	do_action('lsx_head_top');
35 35
 }
36 36
 
37 37
 function lsx_head_bottom() {
38
-	do_action( 'lsx_head_bottom' );
38
+	do_action('lsx_head_bottom');
39 39
 }
40 40
 
41 41
 /**
@@ -45,27 +45,27 @@  discard block
 block discarded – undo
45 45
  */
46 46
 
47 47
 function lsx_header_before() {
48
-	do_action( 'lsx_header_before' );
48
+	do_action('lsx_header_before');
49 49
 }
50 50
 
51 51
 function lsx_header_after() {
52
-	do_action( 'lsx_header_after' );
52
+	do_action('lsx_header_after');
53 53
 }
54 54
 
55 55
 function lsx_header_top() {
56
-	do_action( 'lsx_header_top' );
56
+	do_action('lsx_header_top');
57 57
 }
58 58
 
59 59
 function lsx_header_bottom() {
60
-	do_action( 'lsx_header_bottom' );
60
+	do_action('lsx_header_bottom');
61 61
 }
62 62
 
63 63
 function lsx_nav_before() {
64
-	do_action( 'lsx_nav_before' );
64
+	do_action('lsx_nav_before');
65 65
 }
66 66
 
67 67
 function lsx_nav_after() {
68
-	do_action( 'lsx_nav_after' );
68
+	do_action('lsx_nav_after');
69 69
 }
70 70
 
71 71
 /**
@@ -75,11 +75,11 @@  discard block
 block discarded – undo
75 75
  */
76 76
 
77 77
 function lsx_banner_content() {
78
-	do_action( 'lsx_banner_content' );
78
+	do_action('lsx_banner_content');
79 79
 }
80 80
 
81 81
 function lsx_banner_inner_bottom() {
82
-	do_action( 'lsx_banner_inner_bottom' );
82
+	do_action('lsx_banner_inner_bottom');
83 83
 }
84 84
 
85 85
 /**
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
  */
90 90
 
91 91
 function lsx_global_header_inner_bottom() {
92
-	do_action( 'lsx_global_header_inner_bottom' );
92
+	do_action('lsx_global_header_inner_bottom');
93 93
 }
94 94
 
95 95
 /**
@@ -99,35 +99,35 @@  discard block
 block discarded – undo
99 99
  */
100 100
 
101 101
 function lsx_content_wrap_before() {
102
-	do_action( 'lsx_content_wrap_before' );
102
+	do_action('lsx_content_wrap_before');
103 103
 }
104 104
 
105 105
 function lsx_content_wrap_after() {
106
-	do_action( 'lsx_content_wrap_after' );
106
+	do_action('lsx_content_wrap_after');
107 107
 }
108 108
 
109 109
 function lsx_content_before() {
110
-	do_action( 'lsx_content_before' );
110
+	do_action('lsx_content_before');
111 111
 }
112 112
 
113 113
 function lsx_content_after() {
114
-	do_action( 'lsx_content_after' );
114
+	do_action('lsx_content_after');
115 115
 }
116 116
 
117 117
 function lsx_content_top() {
118
-	do_action( 'lsx_content_top' );
118
+	do_action('lsx_content_top');
119 119
 }
120 120
 
121 121
 function lsx_content_bottom() {
122
-	do_action( 'lsx_content_bottom' );
122
+	do_action('lsx_content_bottom');
123 123
 }
124 124
 
125 125
 function lsx_content_post_tags() {
126
-	do_action( 'lsx_content_post_tags' );
126
+	do_action('lsx_content_post_tags');
127 127
 }
128 128
 
129 129
 function lsx_content_sharing() {
130
-	do_action( 'lsx_content_sharing' );
130
+	do_action('lsx_content_sharing');
131 131
 }
132 132
 
133 133
 /**
@@ -137,19 +137,19 @@  discard block
 block discarded – undo
137 137
  */
138 138
 
139 139
 function lsx_entry_before() {
140
-	do_action( 'lsx_entry_before' );
140
+	do_action('lsx_entry_before');
141 141
 }
142 142
 
143 143
 function lsx_entry_after() {
144
-	do_action( 'lsx_entry_after' );
144
+	do_action('lsx_entry_after');
145 145
 }
146 146
 
147 147
 function lsx_entry_top() {
148
-	do_action( 'lsx_entry_top' );
148
+	do_action('lsx_entry_top');
149 149
 }
150 150
 
151 151
 function lsx_entry_bottom() {
152
-	do_action( 'lsx_entry_bottom' );
152
+	do_action('lsx_entry_bottom');
153 153
 }
154 154
 
155 155
 /**
@@ -159,27 +159,27 @@  discard block
 block discarded – undo
159 159
  */
160 160
 
161 161
 function lsx_widget_entry_before() {
162
-	do_action( 'lsx_widget_entry_before' );
162
+	do_action('lsx_widget_entry_before');
163 163
 }
164 164
 
165 165
 function lsx_widget_entry_after() {
166
-	do_action( 'lsx_widget_entry_after' );
166
+	do_action('lsx_widget_entry_after');
167 167
 }
168 168
 
169 169
 function lsx_widget_entry_top() {
170
-	do_action( 'lsx_widget_entry_top' );
170
+	do_action('lsx_widget_entry_top');
171 171
 }
172 172
 
173 173
 function lsx_widget_entry_bottom() {
174
-	do_action( 'lsx_widget_entry_bottom' );
174
+	do_action('lsx_widget_entry_bottom');
175 175
 }
176 176
 
177 177
 function lsx_widget_entry_content_top() {
178
-	do_action( 'lsx_widget_entry_content_top' );
178
+	do_action('lsx_widget_entry_content_top');
179 179
 }
180 180
 
181 181
 function lsx_widget_entry_content_bottom() {
182
-	do_action( 'lsx_widget_entry_content_bottom' );
182
+	do_action('lsx_widget_entry_content_bottom');
183 183
 }
184 184
 
185 185
 /**
@@ -189,11 +189,11 @@  discard block
 block discarded – undo
189 189
  */
190 190
 
191 191
 function lsx_comments_before() {
192
-	do_action( 'lsx_comments_before' );
192
+	do_action('lsx_comments_before');
193 193
 }
194 194
 
195 195
 function lsx_comments_after() {
196
-	do_action( 'lsx_comments_after' );
196
+	do_action('lsx_comments_after');
197 197
 }
198 198
 
199 199
 /**
@@ -203,19 +203,19 @@  discard block
 block discarded – undo
203 203
  */
204 204
 
205 205
 function lsx_sidebars_before() {
206
-	do_action( 'lsx_sidebars_before' );
206
+	do_action('lsx_sidebars_before');
207 207
 }
208 208
 
209 209
 function lsx_sidebars_after() {
210
-	do_action( 'lsx_sidebars_after' );
210
+	do_action('lsx_sidebars_after');
211 211
 }
212 212
 
213 213
 function lsx_sidebar_top() {
214
-	do_action( 'lsx_sidebar_top' );
214
+	do_action('lsx_sidebar_top');
215 215
 }
216 216
 
217 217
 function lsx_sidebar_bottom() {
218
-	do_action( 'lsx_sidebar_bottom' );
218
+	do_action('lsx_sidebar_bottom');
219 219
 }
220 220
 
221 221
 /**
@@ -225,17 +225,17 @@  discard block
 block discarded – undo
225 225
  */
226 226
 
227 227
 function lsx_footer_before() {
228
-	do_action( 'lsx_footer_before' );
228
+	do_action('lsx_footer_before');
229 229
 }
230 230
 
231 231
 function lsx_footer_after() {
232
-	do_action( 'lsx_footer_after' );
232
+	do_action('lsx_footer_after');
233 233
 }
234 234
 
235 235
 function lsx_footer_top() {
236
-	do_action( 'lsx_footer_top' );
236
+	do_action('lsx_footer_top');
237 237
 }
238 238
 
239 239
 function lsx_footer_bottom() {
240
-	do_action( 'lsx_footer_bottom' );
240
+	do_action('lsx_footer_bottom');
241 241
 }
Please login to merge, or discard this patch.