Opened 12 years ago
Closed 11 years ago
#22209 closed enhancement (fixed)
Simplify logic to generate home path when parsing request
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 3.7 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Query | Keywords: | has-patch |
Focuses: | 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)
Change History (4)
Note: See
TracTickets for help on using
tickets.
That whole area could use some cleanup.
Like, replacing this:
with this:
or maybe even using
parse_str()
.