mirror of
git://develop.git.wordpress.org/
synced 2025-01-29 10:38:22 +01:00
Fix post name check prepare. Props westi. see #6894 for 2.5
git-svn-id: https://develop.svn.wordpress.org/branches/2.5@7877 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
26fa982ce8
commit
024de1d4c6
@ -1285,8 +1285,7 @@ function wp_insert_post($postarr = array()) {
|
||||
$suffix = 2;
|
||||
do {
|
||||
$alt_post_name = substr($post_name, 0, 200-(strlen($suffix)+1)). "-$suffix";
|
||||
// expected_slashed ($alt_post_name, $post_name, $post_type)
|
||||
$post_name_check = $wpdb->get_var($wpdb->prepare("SELECT post_name FROM $wpdb->posts WHERE post_name = '$alt_post_name' AND post_type = '$post_type' AND ID != %d AND post_parent = %d LIMIT 1", $post_ID, $post_parent));
|
||||
$post_name_check = $wpdb->get_var($wpdb->prepare("SELECT post_name FROM $wpdb->posts WHERE post_name = %s AND post_type = %s AND ID != %d AND post_parent = %d LIMIT 1", $alt_post_name, $post_type, $post_ID, $post_parent));
|
||||
$suffix++;
|
||||
} while ($post_name_check);
|
||||
$post_name = $alt_post_name;
|
||||
|
Loading…
x
Reference in New Issue
Block a user