Skip to content

Commit

Permalink
Fix lint errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenDufresne committed Jul 16, 2024
1 parent 8e073d2 commit 0bd99bd
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ function add_site_navigation_menus( $menus ) {
$menu[] = array(
'label' => __( 'My favorites', 'wporg-patterns' ),
'url' => '/favorites/',
'className' => 'has-separator'
'className' => 'has-separator',
);
if ( is_user_logged_in() ) {
$menu[] = array(
Expand All @@ -315,7 +315,6 @@ function add_site_navigation_menus( $menus ) {
);
}


$current_status = isset( $wp_query->query['status'] ) ? $wp_query->query['status'] : false;
$statuses = array(
array(
Expand Down

0 comments on commit 0bd99bd

Please sign in to comment.