Changeset 46660 for trunk/src/wp-includes/kses.php
- Timestamp:
- 11/05/2019 09:21:46 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/kses.php
r46235 r46660 949 949 950 950 /** 951 * Helper function listing HTML attributes containinga URL.951 * Returns an array of HTML attribute names whose value contains a URL. 952 952 * 953 953 * This function returns a list of all HTML attributes that must contain … … 960 960 * @since 5.0.1 961 961 * 962 * @return array HTML attributes that must includea URL.962 * @return string[] HTML attribute names whose value contains a URL. 963 963 */ 964 964 function wp_kses_uri_attributes() { … … 991 991 * @since 5.0.1 992 992 * 993 * @param array $uri_attributes HTML attributes requiring validation as a URL.993 * @param string[] $uri_attributes HTML attribute names whose value contains a URL. 994 994 */ 995 995 $uri_attributes = apply_filters( 'wp_kses_uri_attributes', $uri_attributes );
Note: See TracChangeset
for help on using the changeset viewer.