urldecode slugs in the Edit Post screen permalink. props janbrasna. fixes #8418

git-svn-id: https://develop.svn.wordpress.org/trunk@10108 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2008-12-07 09:12:28 +00:00
parent adb001a76c
commit 72965bba30

View File

@ -158,6 +158,7 @@ add_filter('option_category_base', '_wp_filter_taxonomy_base');
add_filter( 'the_posts', '_close_comments_for_old_posts' ); add_filter( 'the_posts', '_close_comments_for_old_posts' );
add_filter( 'comments_open', '_close_comments_for_old_post', 10, 2 ); add_filter( 'comments_open', '_close_comments_for_old_post', 10, 2 );
add_filter( 'pings_open', '_close_comments_for_old_post', 10, 2 ); add_filter( 'pings_open', '_close_comments_for_old_post', 10, 2 );
add_filter( 'editable_slug', 'urldecode' );
// Atom SSL support // Atom SSL support
add_filter('atom_service_url','atom_service_url_filter'); add_filter('atom_service_url','atom_service_url_filter');