PluginProbe
ActivityPub / 3.2.0
ActivityPub v3.2.0
9.3.1 9.3.0 9.2.2 9.2.1 9.2.0 9.1.0 9.0.2 9.0.1 9.0.0 8.3.0 8.2.1 8.2.0 8.1.1 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.2.0 1.3.0 2.0.0 2.0.1 2.1.0 2.1.1 All 160 releases
activitypub / includes / debug.php

debug.php in ActivityPub 3.2.0, at includes/debug.php

18 lines 417 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Activitypub;
3
4 /**
5 * Allow localhost URLs if WP_DEBUG is true.
6 *
7 * @param array $r Array of HTTP request args.
8 * @param string $url The request URL.
9 *
10 * @return array Array or string of HTTP request arguments.
11 */
12 function allow_localhost( $r, $url ) { // phpcs:ignore
13 $r['reject_unsafe_urls'] = false;
14
15 return $r;
16 }
17 add_filter( 'http_request_args', '\Activitypub\allow_localhost', 10, 2 );
18