Ticket #10483: post_name_patch.diff
File post_name_patch.diff, 1.1 KB (added by , 16 years ago) |
---|
-
wordpress-dev/wp-includes/formatting.php
692 692 if (function_exists('mb_strtolower')) { 693 693 $title = mb_strtolower($title, 'UTF-8'); 694 694 } 695 $title = utf8_uri_encode($title, 200);695 $title = utf8_uri_encode($title, 400); 696 696 } 697 697 698 698 $title = strtolower($title); -
wordpress-dev/wp-admin/includes/schema.php
123 123 comment_status varchar(20) NOT NULL default 'open', 124 124 ping_status varchar(20) NOT NULL default 'open', 125 125 post_password varchar(20) NOT NULL default '', 126 post_name varchar( 200) NOT NULL default '',126 post_name varchar(400) NOT NULL default '', 127 127 to_ping text NOT NULL, 128 128 pinged text NOT NULL, 129 129 post_modified datetime NOT NULL default '0000-00-00 00:00:00',