Passed
Push — master ( 88dbe2...63b138 )
by Chris
06:34 queued 03:12
created
templates/archive-projects.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,9 +76,12 @@
 block discarded – undo
76 76
 
77 77
 			<?php lsx_paging_nav(); ?>
78 78
 
79
-		<?php else : ?>
79
+		<?php else {
80
+	: ?>
80 81
 
81
-			<?php get_template_part( 'partials/content', 'none' ); ?>
82
+			<?php get_template_part( 'partials/content', 'none' );
83
+}
84
+?>
82 85
 
83 86
 		<?php endif; ?>
84 87
 
Please login to merge, or discard this patch.
templates/content-archive-projects.php 1 patch
Braces   +10 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,16 +30,22 @@
 block discarded – undo
30 30
 		<?php if ( ! empty( lsx_get_thumbnail( 'lsx-thumbnail-single' ) ) ) : ?>
31 31
 			<?php if ( ! isset( $lsx_projects_frontend->options['display'] ) || ! isset( $lsx_projects_frontend->options['display']['team_disable_single'] ) ) : ?>
32 32
 				<a href="<?php the_permalink(); ?>"><figure class="lsx-projects-avatar"><?php lsx_thumbnail( 'lsx-thumbnail-single' ); ?></figure></a>
33
-			<?php else : ?>
34
-				<figure class="lsx-projects-avatar"><?php lsx_thumbnail( 'lsx-thumbnail-single' ); ?></figure>
33
+			<?php else {
34
+	: ?>
35
+				<figure class="lsx-projects-avatar"><?php lsx_thumbnail( 'lsx-thumbnail-single' );
36
+}
37
+?></figure>
35 38
 			<?php endif; ?>
36 39
 		<?php endif; ?>
37 40
 
38 41
 		<h5 class="lsx-projects-title">
39 42
 			<?php if ( ! isset( $lsx_projects_frontend->options['display'] ) || ! isset( $lsx_projects_frontend->options['display']['team_disable_single'] ) ) : ?>
40 43
 				<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
41
-			<?php else : ?>
42
-				<?php the_title(); ?>
44
+			<?php else {
45
+	: ?>
46
+				<?php the_title();
47
+}
48
+?>
43 49
 			<?php endif; ?>
44 50
 		</h5>
45 51
 
Please login to merge, or discard this patch.