Changeset 48184 for trunk/src/wp-includes/class-wp-http-proxy.php
- Timestamp:
- 06/26/2020 06:38:51 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-http-proxy.php
r48109 r48184 161 161 * @since 2.8.0 162 162 * 163 * @param string $uri UR I to check.164 * @return bool True, to send through the proxy and false if, the proxy should not be used.163 * @param string $uri URL of the request. 164 * @return bool Whether to send the request through the proxy. 165 165 */ 166 166 public function send_through_proxy( $uri ) { … … 182 182 * @since 3.5.0 183 183 * 184 * @param bool|null $override Whether to override the request result. Default null.185 * @param string $uri URL to check.186 * @param array $check Associative array result of parsing the request UR I.187 * @param array $home Associative array result of parsing the site URL .184 * @param bool|null $override Whether to send the request through the proxy. Default null. 185 * @param string $uri URL of the request. 186 * @param array $check Associative array result of parsing the request URL with `parse_url()`. 187 * @param array $home Associative array result of parsing the site URL with `parse_url()`. 188 188 */ 189 189 $result = apply_filters( 'pre_http_send_through_proxy', null, $uri, $check, $home );
Note: See TracChangeset
for help on using the changeset viewer.