Changeset 6031

Show
Ignore:
Timestamp:
09/04/07 05:26:18 (1 year ago)
Author:
markjaquith
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 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 = '';