Ticket #10483: post_name_patch_5_3.diff
File post_name_patch_5_3.diff, 1.0 KB (added by , 5 years ago) |
---|
-
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', -
wp-includes/formatting.php
2220 2220 if ( function_exists( 'mb_strtolower' ) ) { 2221 2221 $title = mb_strtolower( $title, 'UTF-8' ); 2222 2222 } 2223 $title = utf8_uri_encode( $title, 200 );2223 $title = utf8_uri_encode( $title, 400 ); 2224 2224 } 2225 2225 2226 2226 $title = strtolower( $title );