Changeset 48121 for trunk/src/wp-admin/includes/class-wp-site-health.php
- Timestamp:
- 06/22/2020 05:24:34 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-site-health.php
r48102 r48121 1777 1777 * Test if HTTP requests are blocked. 1778 1778 * 1779 * It's possible to block all outgoing communication (with the possibility of whitelisting hosts) via the 1780 * HTTP API. This may create problems for users as many features are running as services these days. 1779 * It's possible to block all outgoing communication (with the possibility of allowing certain 1780 * hosts) via the HTTP API. This may create problems for users as many features are running as 1781 * services these days. 1781 1782 * 1782 1783 * @since 5.2.0 … … 1834 1835 '<p>%s</p>', 1835 1836 sprintf( 1836 /* translators: 1: Name of the constant used. 2: List of hostnames whitelisted. */1837 __( 'HTTP requests have been blocked by the %1$s constant, with some hosts whitelisted: %2$s.' ),1837 /* translators: 1: Name of the constant used. 2: List of allowed hostnames. */ 1838 __( 'HTTP requests have been blocked by the %1$s constant, with some allowed hosts: %2$s.' ), 1838 1839 '<code>WP_HTTP_BLOCK_EXTERNAL</code>', 1839 1840 implode( ',', $hosts )
Note: See TracChangeset
for help on using the changeset viewer.