Changeset 10920 for sites/trunk/wordpress.org/public_html/wp-content/plugins/handbook/inc/table-of-contents.php
- Timestamp:
- 04/22/2021 12:56:31 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/handbook/inc/table-of-contents.php
r10768 r10920 93 93 $last_item = $item[2]; 94 94 95 $id = sanitize_title_with_dashes( $item[3]);95 $id = sanitize_title_with_dashes( remove_accents( $item[3] ) ); 96 96 // Append unique suffix if anchor ID isn't unique. 97 97 $count = 2; … … 121 121 $replacement = ''; 122 122 $matches[] = $item[0]; 123 $id = sanitize_title_with_dashes( $item[2]);123 $id = sanitize_title_with_dashes( remove_accents( $item[2] ) ); 124 124 125 125 // Append unique suffix if anchor ID isn't unique.
Note: See TracChangeset
for help on using the changeset viewer.