Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
trac-57579 null handled for get_admin_page_title
  • Loading branch information
zamandevs committed Feb 16, 2023
commit f880f6ed5a718a5fda56c2537f955f1f3a191bf0
7 changes: 6 additions & 1 deletion src/wp-admin/includes/plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -2035,7 +2035,12 @@ function get_admin_page_title() {
}
}

return $title;
if ( empty( $title ) ) {
$title = '';
return $title;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we can remove this line as $title is returned three lines after :)

}

return '';
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
return '';
return $title;

This should return $title here. Props @SergeyBiryukov

}

/**
Expand Down