Changeset 47892
- Timestamp:
- 06/03/2020 10:00:27 AM (4 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/kses.php
r47891 r47892 2306 2306 * Filters the regex limiting the list of characters not allowed in CSS rules. 2307 2307 * 2308 * Default behaviour is to remove any css containing \ ( & } = or comments, except for url() usage. 2308 * Default behaviour is to remove any CSS containing \ ( & } = or comments, 2309 * except for url() usage. 2309 2310 * 2310 2311 * @since 5.5.0 2311 2312 * 2312 * @param string $regex Regex pattern of disallowed characters in CSS rules. Default is '%[\\\(&=}]|/\*%'. 2313 * @param string $regex Regex pattern of disallowed characters in CSS rules. 2314 * Default is '%[\\\(&=}]|/\*%'. 2313 2315 * @param string $css_test_string CSS value to test. 2314 2316 */ -
trunk/src/wp-includes/link-template.php
r47808 r47892 3863 3863 * @since 3.0.0 3864 3864 * 3865 * @param bool|string $return Short-circuit return value. Either false or a URL string.3866 * @param int $id Post ID, or 0 for the current post.3867 * @param string $context The context for the link. One of 'post' or 'query',3868 * @param bool $allow_slugs Whether to allow post slugs in the shortlink.3865 * @param false|string $return Short-circuit return value. Either false or a URL string. 3866 * @param int $id Post ID, or 0 for the current post. 3867 * @param string $context The context for the link. One of 'post' or 'query', 3868 * @param bool $allow_slugs Whether to allow post slugs in the shortlink. 3869 3869 */ 3870 3870 $shortlink = apply_filters( 'pre_get_shortlink', false, $id, $context, $allow_slugs ); -
trunk/src/wp-includes/ms-deprecated.php
r47855 r47892 166 166 * @param string $email Email address to verify. 167 167 * @param bool $check_domain Deprecated. 168 * @return string| bool Either false or the valid email address.168 * @return string|false Valid email address on success, false on failure. 169 169 */ 170 170 function validate_email( $email, $check_domain = true) { -
trunk/src/wp-includes/ms-functions.php
r47855 r47892 393 393 * 394 394 * @param string $user_email The email provided by the user at registration. 395 * @return bool Returns true when the email address is banned.395 * @return bool True when the email address is banned, false otherwise. 396 396 */ 397 397 function is_email_address_unsafe( $user_email ) { -
trunk/src/wp-includes/nav-menu-template.php
r47808 r47892 92 92 * Filters whether to short-circuit the wp_nav_menu() output. 93 93 * 94 * Returning a non-null value to the filter will short-circuit94 * Passing a non-null value to the filter will short-circuit 95 95 * wp_nav_menu(), echoing that value if $args->echo is true, 96 96 * returning that value otherwise. -
trunk/src/wp-includes/post.php
r47856 r47892 3682 3682 * 2. The title, editor, and excerpt fields are all empty 3683 3683 * 3684 * Returning a truthy value to the filter will effectively short-circuit3684 * Passing a truthy value to the filter will effectively short-circuit 3685 3685 * the new post being inserted, returning 0. If $wp_error is true, a WP_Error 3686 3686 * will be returned instead.
Note: See TracChangeset
for help on using the changeset viewer.