Make WordPress Core


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

Quote values heading to DB. Cast some ints.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.1/wp-includes/post.php

    r5022 r5030  
    801801        if ($add_cats) {
    802802                foreach ($add_cats as $new_cat) {
     803                        $new_cat = (int) $new_cat;
    803804                        if ( !empty($new_cat) )
    804805                                $wpdb->query("
    805806                                        INSERT INTO $wpdb->post2cat (post_id, category_id)
    806                                         VALUES ($post_ID, $new_cat)");
     807                                        VALUES ('$post_ID', '$new_cat')");
    807808                }
    808809        }
Note: See TracChangeset for help on using the changeset viewer.