Skip to content

Commit d3e1721

Browse files
Remove extra space
1 parent 0bef1f8 commit d3e1721

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

class-unlist-posts.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ function post_navigation_clause( $where ) {
128128

129129
// bail if none of the posts are hidden or we are on admin page or singular page.
130130
if ( ( is_admin() && ! wp_doing_ajax() ) || empty( $hidden_posts ) ) {
131-
return $where;
131+
return $where;
132132
}
133133

134134
$where .= ' AND p.ID NOT IN ( ' . esc_sql( $this->hidden_post_string() ) . ' ) ';
@@ -203,7 +203,7 @@ public function comments_clauses( $clauses, $query ) {
203203

204204
// bail if none of the posts are hidden or we are on admin page or singular page.
205205
if ( ( is_admin() && ! wp_doing_ajax() ) || empty( $hidden_posts ) ) {
206-
return $clauses;
206+
return $clauses;
207207
}
208208

209209
$where = $clauses['where'];

0 commit comments

Comments
 (0)