Skip to content

Commit

Permalink
Coding Standards: Use strict comparison in wp-admin/edit.php.
Browse files Browse the repository at this point in the history
Props davidbaumwald.
Fixes #47201.

git-svn-id: https://develop.svn.wordpress.org/trunk@45759 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
SergeyBiryukov committed Aug 7, 2019
1 parent 93aa98c commit 10e13da
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/wp-admin/edit.php
Expand Up @@ -56,7 +56,7 @@
}
unset( $_redirect );

if ( 'post' != $post_type ) {
if ( 'post' !== $post_type ) {
$parent_file = "edit.php?post_type=$post_type";
$submenu_file = "edit.php?post_type=$post_type";
$post_new_file = "post-new.php?post_type=$post_type";
Expand All @@ -80,7 +80,7 @@
$sendback = admin_url( $post_new_file );
}

if ( 'delete_all' == $doaction ) {
if ( 'delete_all' === $doaction ) {
// Prepare for deletion of all posts with a specified post status (i.e. Empty trash).
$post_status = preg_replace( '/[^a-z0-9_-]+/i', '', $_REQUEST['post_status'] );
// Validate the post status exists.
Expand Down Expand Up @@ -156,7 +156,7 @@
wp_die( __( 'Sorry, you are not allowed to delete this item.' ) );
}

if ( $post_del->post_type == 'attachment' ) {
if ( 'attachment' === $post_del->post_type ) {
if ( ! wp_delete_attachment( $post_id ) ) {
wp_die( __( 'Error in deleting.' ) );
}
Expand Down Expand Up @@ -208,7 +208,7 @@

$title = $post_type_object->labels->name;

if ( 'post' == $post_type ) {
if ( 'post' === $post_type ) {
get_current_screen()->add_help_tab(
array(
'id' => 'overview',
Expand Down Expand Up @@ -261,7 +261,7 @@
'<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>'
);

} elseif ( 'page' == $post_type ) {
} elseif ( 'page' === $post_type ) {
get_current_screen()->add_help_tab(
array(
'id' => 'overview',
Expand Down Expand Up @@ -383,7 +383,7 @@
$messages[] = sprintf( $bulk_messages['post'][ $message ], number_format_i18n( $count ) );
}

if ( $message == 'trashed' && isset( $_REQUEST['ids'] ) ) {
if ( 'trashed' === $message && isset( $_REQUEST['ids'] ) ) {
$ids = preg_replace( '/[^0-9,]/', '', $_REQUEST['ids'] );
$messages[] = '<a href="' . esc_url( wp_nonce_url( "edit.php?post_type=$post_type&doaction=undo&action=untrash&ids=$ids", 'bulk-posts' ) ) . '">' . __( 'Undo' ) . '</a>';
}
Expand Down

0 comments on commit 10e13da

Please sign in to comment.