Make WordPress Core


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

Remove redundant isset() and empty() checks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/load.php

    r13599 r13770  
    6363
    6464            // Append the query string if it exists and isn't null
    65             if ( isset( $_SERVER['QUERY_STRING'] ) && !empty( $_SERVER['QUERY_STRING'] ) ) {
     65            if ( ! empty( $_SERVER['QUERY_STRING'] ) ) {
    6666                $_SERVER['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING'];
    6767            }
Note: See TracChangeset for help on using the changeset viewer.