Changeset 6570
- Timestamp:
- 02/08/2018 05:18:20 PM (7 years ago)
- 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/wporg-gp-customizations/templates/consistency.php
r6454 r6570 85 85 str_replace( ' ', '<span class="space"> </span>', esc_translation( $translation ) ), 86 86 1 === $translations_unique_counts[ $translation ] ? $translations_unique_counts[ $translation ] . ' time' : $translations_unique_counts[ $translation ] . ' times', 87 esc_attr( sanitize_title( 't-' .$translation ) )87 esc_attr( 't-' . md5( $translation ) ) 88 88 ); 89 89 } … … 123 123 printf( 124 124 '<tr id="%s" class="new-translation"><td colspan="2"><strong>%s</strong> <a href="#translations-overview">↑</a></td></tr>', 125 esc_attr( sanitize_title( 't-' .$result->translation ) ),125 esc_attr( 't-' . md5( $result->translation ) ), 126 126 esc_translation( $result->translation ) 127 127 ); -
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-routes/inc/routes/class-consistency.php
r6452 r6570 173 173 174 174 public function _sort_callback( $a, $b ) { 175 return strnatc asecmp( $a->translation, $b->translation );175 return strnatcmp( $a->translation, $b->translation ); 176 176 } 177 177 }
Note: See TracChangeset
for help on using the changeset viewer.