Make WordPress Core


Ignore:
Timestamp:
03/22/2007 08:52:29 PM (19 years ago)
Author:
ryan
Message:

More int casts

File:
1 edited

Legend:

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

    r5029 r5082  
    448448
    449449function wp_get_post_categories($post_id = 0) {
     450        $post_id = (int) $post_id;
     451
    450452        $cats = &get_the_category($post_id);
    451453        $cat_ids = array();
     
    471473function wp_get_single_post($postid = 0, $mode = OBJECT) {
    472474        global $wpdb;
     475
     476        $postid = (int) $postid;
    473477
    474478        $post = get_post($postid, $mode);
Note: See TracChangeset for help on using the changeset viewer.