Make WordPress Core

Changeset 41 in tests


Ignore:
Timestamp:
10/03/2007 02:20:35 AM (17 years ago)
Author:
tellyworth
Message:

fix http() function

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wp-testlib/base.php

    r39 r41  
    7474        if (isset($parts['scheme'])) {
    7575            $req = $parts['path'];
    76             if (isset($parts['query']))
     76            if (isset($parts['query'])) {
    7777                $req .= '?' . $parts['query'];
     78                // parse the url query vars into $_GET
     79                parse_str($parts['query'], $_GET);
     80                dmp($_GET);
     81            }
    7882        }
    7983        else {
     
    8185        }
    8286
    83         query_posts($path);
     87        #query_posts($req);
     88        $_SERVER['REQUEST_URI'] = $req;
     89        $GLOBALS['wp'] =& new WP();
     90        $GLOBALS['wp']->main($parts['query']);
    8491    }
    8592
Note: See TracChangeset for help on using the changeset viewer.