Opened 7 months ago
Last modified 7 months ago
#22209 new enhancement
Simplify logic to generate home path when parsing request
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | Awaiting Review |
| Component: | Query | Version: | |
| Severity: | normal | Keywords: | has-patch |
| Cc: |
Description
In WP::parse_request() we go through a few steps to generate the $home_path variable. Since we now require PHP 5.2, we can use parse_url()'s second argument to get the path directly.
Attachments (1)
Note: See
TracTickets for help on using
tickets.

That whole area could use some cleanup.
Like, replacing this:
$req_uri_array = explode('?', $req_uri); $req_uri = $req_uri_array[0];with this:
or maybe even using parse_str().