Make WordPress Core


Ignore:
Timestamp:
04/22/2006 12:02:00 AM (20 years ago)
Author:
ryan
Message:

Add some prophylactic int casts and quoting.

File:
1 edited

Legend:

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

    r3714 r3740  
    6161function get_approved_comments($post_id) {
    6262    global $wpdb;
    63     return $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE comment_post_ID = $post_id AND comment_approved = '1' ORDER BY comment_date");
     63
     64    $post_id = (int) $post_id;
     65    return $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE comment_post_ID = '$post_id' AND comment_approved = '1' ORDER BY comment_date");
    6466}
    6567
Note: See TracChangeset for help on using the changeset viewer.