Make WordPress Core


Ignore:
Timestamp:
05/04/2006 10:25:24 PM (19 years ago)
Author:
ryan
Message:

Add some prophylactic int casts and quoting.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0/wp-includes/comment-functions.php

    r3737 r3762  
    903903function get_approved_comments($post_id) {
    904904    global $wpdb;
     905
     906    $post_id = (int) $post_id;
    905907    return $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE comment_post_ID = $post_id AND comment_approved = '1' ORDER BY comment_date");
    906908}
Note: See TracChangeset for help on using the changeset viewer.