Completed
Branch master (7c3821)
by SILENT
02:40
created
taxonomy-story-draft.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,9 +47,12 @@
 block discarded – undo
47 47
 <?php
48 48
 	wp_reset_postdata();
49 49
 ?>
50
-		<?php else : ?>
50
+		<?php else {
51
+	: ?>
51 52
 
52
-			<?php get_template_part( 'no-results', 'archive-comic' ); ?>
53
+			<?php get_template_part( 'no-results', 'archive-comic' );
54
+}
55
+?>
53 56
 
54 57
 		<?php endif; ?>
55 58
 
Please login to merge, or discard this patch.
content-audio.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,8 +21,10 @@
 block discarded – undo
21 21
 
22 22
 				if ( ! is_single() ) :
23 23
 					the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
24
-				else :
24
+				else {
25
+					:
25 26
 						the_title( '<h1 class="entry-title">', '</h1>' );
27
+				}
26 28
 				endif;
27 29
 				?>
28 30
 			</header><!-- .entry-header -->
Please login to merge, or discard this patch.
taxonomy-story-name.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,8 +74,10 @@
 block discarded – undo
74 74
 		);
75 75
 
76 76
 
77
-		else :
77
+		else {
78
+			:
78 79
 			get_template_part( 'no-results', 'archive-comic' );
80
+		}
79 81
 		endif; ?>
80 82
 
81 83
 		</main><!-- #content -->
Please login to merge, or discard this patch.
archive-story.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,8 +96,10 @@
 block discarded – undo
96 96
 wp_reset_postdata();
97 97
 ?>
98 98
 		<?php
99
-		else :
99
+		else {
100
+			:
100 101
 			get_template_part( 'no-results', 'archive-comic' );
102
+		}
101 103
 		endif; ?>
102 104
 
103 105
 				</div><!-- .wrap -->
Please login to merge, or discard this patch.
search.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,11 +27,14 @@
 block discarded – undo
27 27
 
28 28
 		strip_content_nav( 'nav-below' );
29 29
 
30
-		else : ?>
30
+		else {
31
+			: ?>
31 32
 
32 33
 <article id="post-0" class="no-results">
33 34
 	<header class="page-header">
34
-		<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'strip' ); ?></h1>
35
+		<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'strip' );
36
+		}
37
+		?></h1>
35 38
 	</header><!-- .page-header -->
36 39
 <div class="entry-content">
37 40
 			<p> <?php esc_html_e( 'Bummer, I cannot find what you are looking for.
Please login to merge, or discard this patch.
inc/custom-header.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,11 +71,14 @@
 block discarded – undo
71 71
 		}
72 72
 	<?php
73 73
 		// If the user has set a custom color for the text use that.
74
-		else :
74
+		else {
75
+			:
75 76
 	?>
76 77
 		.site-title a,
77 78
 		.site-description {
78
-			color: #<?php echo esc_attr( $header_text_color ); ?>;
79
+			color: #<?php echo esc_attr( $header_text_color );
80
+		}
81
+		?>;
79 82
 		}
80 83
 		.site-title {
81 84
 			border-color: #<?php echo esc_attr( $header_text_color ); ?>;
Please login to merge, or discard this patch.
content-gallery.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,8 +28,10 @@
 block discarded – undo
28 28
 
29 29
 	if ( ! is_single() ) :
30 30
 		the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
31
-	else :
31
+	else {
32
+		:
32 33
 					the_title( '<h1 class="entry-title">', '</h1>' );
34
+	}
33 35
 	endif; ?>
34 36
 
35 37
 		<div class="entry-content clear">
Please login to merge, or discard this patch.
content-series.php 1 patch
Braces   +8 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,8 +28,10 @@  discard block
 block discarded – undo
28 28
 
29 29
 			if ( ! is_single() ) :
30 30
 				the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
31
-			else :
31
+			else {
32
+				:
32 33
 					the_title( '<h1 class="entry-title">', '</h1>' );
34
+			}
33 35
 			endif; ?>
34 36
 
35 37
 	</header><!-- .entry-header -->
@@ -40,10 +42,13 @@  discard block
 block discarded – undo
40 42
 			<?php the_excerpt(); ?>
41 43
 		</div><!-- .entry-summary -->
42 44
 
43
-		<?php else : ?>
45
+		<?php else {
46
+	: ?>
44 47
 
45 48
 	<div class="entry-comic">
46
-		<?php the_content(); ?>
49
+		<?php the_content();
50
+}
51
+?>
47 52
 
48 53
 		<?php endif; ?>
49 54
 		</div><!-- .entry-content -->
Please login to merge, or discard this patch.
archive.php 1 patch
Braces   +8 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,8 +75,10 @@  discard block
 block discarded – undo
75 75
 						elseif ( ! 'comic' === get_post_type() ) :
76 76
 							esc_html_e( 'Comics', 'strip' );
77 77
 
78
-							else :
78
+							else {
79
+								:
79 80
 								esc_html_e( 'Archives', 'strip' );
81
+							}
80 82
 
81 83
 							endif;
82 84
 						?>
@@ -108,9 +110,12 @@  discard block
 block discarded – undo
108 110
 
109 111
 			<?php strip_content_nav( 'nav-below' ); ?>
110 112
 
111
-		<?php else : ?>
113
+		<?php else {
114
+	: ?>
112 115
 
113
-			<?php get_template_part( 'no-results', 'archive' ); ?>
116
+			<?php get_template_part( 'no-results', 'archive' );
117
+}
118
+?>
114 119
 
115 120
 		<?php endif; ?>
116 121
 
Please login to merge, or discard this patch.