Ticket #10483: 10483_corrected.diff
File 10483_corrected.diff, 1.0 KB (added by , 4 years ago) |
---|
-
src/wp-admin/includes/schema.php
168 168 comment_status varchar(20) NOT NULL default 'open', 169 169 ping_status varchar(20) NOT NULL default 'open', 170 170 post_password varchar(255) NOT NULL default '', 171 post_name varchar( 200) NOT NULL default '',171 post_name varchar(400) NOT NULL default '', 172 172 to_ping text NOT NULL, 173 173 pinged text NOT NULL, 174 174 post_modified datetime NOT NULL default '0000-00-00 00:00:00', -
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 );