mirror of
git://develop.git.wordpress.org/
synced 2025-01-19 13:47:02 +01:00
In sanitize_title(), strip_tags() before sanitizing, not after. In post.php, if post name is empty, pass the post title to the sanitizer.
git-svn-id: https://develop.svn.wordpress.org/trunk@1512 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c142f1c2a1
commit
32bd9e6ac7
@ -302,7 +302,11 @@ case 'editpost':
|
||||
if (empty($ping_status)) $ping_status = 'closed';
|
||||
//if (!$_POST['ping_status']) $ping_status = get_settings('default_ping_status');
|
||||
$post_password = $_POST['post_password'];
|
||||
$post_name = sanitize_title($_POST['post_name'], $post_ID);
|
||||
$post_name = $_POST['post_name'];
|
||||
if (empty($post_name)) {
|
||||
$post_name = $post_title;
|
||||
}
|
||||
$post_name = sanitize_title($post_name, $post_ID);
|
||||
if (empty($post_name)) $post_name = sanitize_title($post_title);
|
||||
$trackback = $_POST['trackback_url'];
|
||||
// Format trackbacks
|
||||
|
@ -120,8 +120,9 @@ function remove_accents($string) {
|
||||
}
|
||||
|
||||
function sanitize_title($title, $fallback_title = '') {
|
||||
$title = apply_filters('sanitize_title', $title);
|
||||
$title = strip_tags($title);
|
||||
$title = apply_filters('sanitize_title', $title);
|
||||
|
||||
if (empty($title)) {
|
||||
$title = $fallback_title;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user