Make WordPress Core


Ignore:
Timestamp:
03/12/2007 04:09:44 PM (19 years ago)
Author:
ryan
Message:

Quote values heading to DB. Cast some ints.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/post.php

    r5022 r5029  
    803803    if ($add_cats) {
    804804        foreach ($add_cats as $new_cat) {
     805            $new_cat = (int) $new_cat;
    805806            if ( !empty($new_cat) )
    806807                $wpdb->query("
    807808                    INSERT INTO $wpdb->post2cat (post_id, category_id)
    808                     VALUES ($post_ID, $new_cat)");
     809                    VALUES ('$post_ID', '$new_cat')");
    809810        }
    810811    }
Note: See TracChangeset for help on using the changeset viewer.