Make WordPress Core

Changeset 6031


Ignore:
Timestamp:
09/04/2007 05:26:18 AM (17 years ago)
Author:
markjaquith
Message:

Actually, let's just drop that slash check altogether. Equals sign is the best indicator. fixes #4903 for trunk

File:
1 edited

Legend:

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

    r6030 r6031  
    628628            $query = $parts[1];
    629629        }
    630     } elseif (!empty($protocol) || ( strpos($uri, '/') !== false && strpos($uri, '=') === false ) ) {
     630    } elseif (!empty($protocol) || strpos($uri, '=') === false ) {
    631631        $base = $uri . '?';
    632632        $query = '';
Note: See TracChangeset for help on using the changeset viewer.