Make WordPress Core


Ignore:
Timestamp:
09/27/2005 03:42:17 AM (20 years ago)
Author:
matt
Message:

Minor cleanups.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/admin-functions.php

    r2921 r2923  
    7171function relocate_children($old_ID, $new_ID) {
    7272    global $wpdb;
    73     $wpdb->query("UPDATE $wpdb->posts SET post_parent = $new_ID WHERE post_parent = $old_ID");
     73    $old_ID = (int) $old_ID;
     74    $new_ID = (int) $new_ID;
     75    return $wpdb->query("UPDATE $wpdb->posts SET post_parent = $new_ID WHERE post_parent = $old_ID");
    7476}
    7577
Note: See TracChangeset for help on using the changeset viewer.