Making WordPress.org


Ignore:
Timestamp:
04/22/2021 12:56:31 AM (5 years ago)
Author:
dd32
Message:

Handbooks/HelpHub: Replace accented characters before converting a title into a slug for use as page anchors.

Fixes #5711.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/support-helphub/inc/table-of-contents-lite/includes/class-table-of-contents-lite.php

    r9883 r10920  
    255255                }
    256256                $last_item = $item[2];
    257                 $toc .= sprintf( '<li><a href="#%1s">%2s</a>', sanitize_title_with_dashes( $item[3] ), $item[3] );
     257                $toc .= sprintf( '<li><a href="#%1s">%2s</a>', sanitize_title_with_dashes( remove_accents( $item[3] ) ), $item[3] );
    258258            }
    259259            $toc .= '</ul></div>';
     
    297297            $replacement = '';
    298298            $matches[]   = $item[0];
    299             $id          = sanitize_title_with_dashes( $item[2] );
     299            $id          = sanitize_title_with_dashes( remove_accents( $item[2] ) );
    300300            if ( ! $first ) {
    301301                $replacement .= '<p class="toc-jump"><a href="#top">' . __( 'Top &uarr;', 'wporg-forums' ) . '</a></p>';
Note: See TracChangeset for help on using the changeset viewer.