Making WordPress.org

Changeset 10945


Ignore:
Timestamp:
05/04/2021 04:25:36 AM (4 years ago)
Author:
dd32
Message:

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

This time use sanitize_title() so that sanitize_title_with_dashes() gets called with save context rather than display which properly strips any remaining entities.

Follow up to [10920].
Fixes #5711.

Location:
sites/trunk/wordpress.org/public_html/wp-content/plugins
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/handbook/inc/table-of-contents.php

    r10938 r10945  
    131131                $last_item = $item[2];
    132132
    133                 $id = sanitize_title_with_dashes( remove_accents( $item[3] ) );
     133                $id = sanitize_title( $item[3] );
    134134                // Append unique suffix if anchor ID isn't unique.
    135135                $count = 2;
     
    159159            $replacement = '';
    160160            $matches[] = $item[0];
    161             $id = sanitize_title_with_dashes( remove_accents( $item[2] ) );
     161            $id = sanitize_title( $item[2] );
    162162
    163163            // Append unique suffix if anchor ID isn't unique.
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/support-helphub/inc/table-of-contents-lite/includes/class-table-of-contents-lite.php

    r10920 r10945  
    255255                }
    256256                $last_item = $item[2];
    257                 $toc .= sprintf( '<li><a href="#%1s">%2s</a>', sanitize_title_with_dashes( remove_accents( $item[3] ) ), $item[3] );
     257                $toc .= sprintf( '<li><a href="#%1s">%2s</a>', sanitize_title( $item[3] ), $item[3] );
    258258            }
    259259            $toc .= '</ul></div>';
     
    297297            $replacement = '';
    298298            $matches[]   = $item[0];
    299             $id          = sanitize_title_with_dashes( remove_accents( $item[2] ) );
     299            $id          = sanitize_title( $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.