Completed
Push — master ( 093872...68c3c6 )
by SILENT
02:21
created
content-comic.php 1 patch
Braces   +8 added lines, -3 removed lines patch added patch discarded remove patch
@@ -47,8 +47,10 @@  discard block
 block discarded – undo
47 47
 
48 48
 		if ( ! is_single() ) :
49 49
 			the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
50
-			else :
50
+			else {
51
+				:
51 52
 					the_title( '<h1 class="entry-title">', '</h1>' );
53
+			}
52 54
 			endif; ?>
53 55
 
54 56
 	</header><!-- .entry-header -->
@@ -60,10 +62,13 @@  discard block
 block discarded – undo
60 62
 			<?php the_excerpt(); ?>
61 63
 		</div><!-- .entry-summary -->
62 64
 
63
-		<?php else : ?>
65
+		<?php else {
66
+	: ?>
64 67
 
65 68
 	<div class="entry-comic">
66
-		<?php the_content( __( 'Continue watching <span class="meta-nav">&rarr;</span>', 'strip' ) ); ?>
69
+		<?php the_content( __( 'Continue watching <span class="meta-nav">&rarr;</span>', 'strip' ) );
70
+}
71
+?>
67 72
 
68 73
 			<?php endif; ?>
69 74
 		</div><!-- .entry-content -->
Please login to merge, or discard this patch.
content-image.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,8 +26,10 @@
 block discarded – undo
26 26
 
27 27
 			if ( ! is_single() ) :
28 28
 				the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
29
-			else :
29
+			else {
30
+				:
30 31
 					the_title( '<h1 class="entry-title">', '</h1>' );
32
+			}
31 33
 			endif;
32 34
 			?>
33 35
 			</header><!-- .entry-header -->
Please login to merge, or discard this patch.
content-video.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,8 +30,10 @@
 block discarded – undo
30 30
 
31 31
 		if ( ! is_single() ) :
32 32
 			the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
33
-		else :
33
+		else {
34
+			:
34 35
 			the_title( '<h1 class="entry-title">', '</h1>' );
36
+		}
35 37
 		endif;
36 38
 		?>
37 39
 	</header><!-- .entry-header -->
Please login to merge, or discard this patch.
archive-comic.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,9 +69,12 @@
 block discarded – undo
69 69
 
70 70
 		<?php strip_content_nav( 'nav-below' ); ?>
71 71
 
72
-	<?php else : ?>
72
+	<?php else {
73
+	: ?>
73 74
 
74
-	<?php get_template_part( 'no-results', 'archive-comic' ); ?>
75
+	<?php get_template_part( 'no-results', 'archive-comic' );
76
+}
77
+?>
75 78
 
76 79
 	<?php endif;
77 80
 			wp_reset_postdata(); ?>
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.