Completed
Branch master (292a4f)
by Amit
02:06
created
comments.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,8 +56,8 @@
 block discarded – undo
56 56
                     <h2 class="screen-reader-text"><?php esc_html_e('Comment navigation', 'podium');?></h2>
57 57
                     <div class="nav-links">
58 58
                         <div class="nav-previous"><?php previous_comments_link(
59
-                                                          esc_html__('Older Comments', 'podium')
60
-                                                      );?></div>
59
+                                                            esc_html__('Older Comments', 'podium')
60
+                                                        );?></div>
61 61
                             <div
62 62
                             class="nav-next"><?php next_comments_link(esc_html__('Newer Comments', 'podium'));?></div>
63 63
 
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -53,13 +53,13 @@  discard block
 block discarded – undo
53 53
                 if (get_comment_pages_count() > 1
54 54
                 && get_option('page_comments')) { // Are there comments to navigate through? ?>
55 55
                 <nav id="comment-nav-above" class="navigation comment-navigation" role="navigation">
56
-                    <h2 class="screen-reader-text"><?php esc_html_e('Comment navigation', 'podium');?></h2>
56
+                    <h2 class="screen-reader-text"><?php esc_html_e('Comment navigation', 'podium'); ?></h2>
57 57
                     <div class="nav-links">
58 58
                         <div class="nav-previous"><?php previous_comments_link(
59 59
                                                           esc_html__('Older Comments', 'podium')
60
-                                                      );?></div>
60
+                                                      ); ?></div>
61 61
                             <div
62
-                            class="nav-next"><?php next_comments_link(esc_html__('Newer Comments', 'podium'));?></div>
62
+                            class="nav-next"><?php next_comments_link(esc_html__('Newer Comments', 'podium')); ?></div>
63 63
 
64 64
                         </div><!-- .nav-links -->
65 65
                     </nav><!-- #comment-nav-above -->
@@ -78,10 +78,10 @@  discard block
 block discarded – undo
78 78
 
79 79
     <?php if (get_comment_pages_count() > 1 && get_option('page_comments')) {?>
80 80
         <nav id="comment-nav-below" class="navigation comment-navigation" role="navigation">
81
-            <h2 class="screen-reader-text"><?php esc_html_e('Comment navigation', 'podium');?></h2>
81
+            <h2 class="screen-reader-text"><?php esc_html_e('Comment navigation', 'podium'); ?></h2>
82 82
             <div class="nav-links">
83
-                <div class="nav-previous"><?php previous_comments_link(esc_html__('Older Comments', 'podium'));?></div>
84
-                <div class="nav-next"><?php next_comments_link(esc_html__('Newer Comments', 'podium'));?></div>
83
+                <div class="nav-previous"><?php previous_comments_link(esc_html__('Older Comments', 'podium')); ?></div>
84
+                <div class="nav-next"><?php next_comments_link(esc_html__('Newer Comments', 'podium')); ?></div>
85 85
             </div><!-- .nav-links -->
86 86
         </nav><!-- #comment-nav-below -->
87 87
     <?php }?>
@@ -91,8 +91,8 @@  discard block
 block discarded – undo
91 91
         && '0' != get_comments_number()
92 92
         && post_type_supports(get_post_type(), 'comments')) {
93 93
     ?>
94
-    <p class="no-comments"><?php esc_html_e('Comments are closed.', 'podium');?></p>
94
+    <p class="no-comments"><?php esc_html_e('Comments are closed.', 'podium'); ?></p>
95 95
 <?php }?>
96
-<?php comment_form();?>
96
+<?php comment_form(); ?>
97 97
 
98 98
 </div><!-- #comments -->
Please login to merge, or discard this patch.