Ticket #10483: 10483.diff
File 10483.diff, 996 bytes (added by , 4 years ago) |
---|
-
src/wp-admin/includes/schema.php
64 64 ) $charset_collate; 65 65 CREATE TABLE $wpdb->terms ( 66 66 term_id bigint(20) unsigned NOT NULL auto_increment, 67 name varchar( 200) NOT NULL default '',67 name varchar(400) NOT NULL default '', 68 68 slug varchar(200) NOT NULL default '', 69 69 term_group bigint(10) NOT NULL default 0, 70 70 PRIMARY KEY (term_id), -
src/wp-includes/formatting.php
2236 2236 if ( function_exists( 'mb_strtolower' ) ) { 2237 2237 $title = mb_strtolower( $title, 'UTF-8' ); 2238 2238 } 2239 $title = utf8_uri_encode( $title, 200 );2239 $title = utf8_uri_encode( $title, 400 ); 2240 2240 } 2241 2241 2242 2242 $title = strtolower( $title );