Make WordPress Core


Ignore:
Timestamp:
03/19/2010 09:29:21 PM (15 years ago)
Author:
nacin
Message:

Remove redundant isset() and empty() checks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/install.php

    r13769 r13770  
    8080    // Ensure that Blogs appear in search engines by default
    8181    $blog_public = 1;
    82     if ( isset( $_POST ) && ! empty( $_POST ) )
     82    if ( ! empty( $_POST ) )
    8383        $blog_public = isset( $_POST['blog_public'] );
    8484
Note: See TracChangeset for help on using the changeset viewer.