Ticket #10483: post_name_len_increase_new.diff
File post_name_len_increase_new.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
2233 2233 if ( function_exists( 'mb_strtolower' ) ) { 2234 2234 $title = mb_strtolower( $title, 'UTF-8' ); 2235 2235 } 2236 $title = utf8_uri_encode( $title, 200 );2236 $title = utf8_uri_encode( $title, 400 ); 2237 2237 } 2238 2238 2239 2239 $title = strtolower( $title );