Show
Ignore:
Timestamp:
03/25/07 23:12:38 (2 years ago)
Author:
ryan
Message:

More int casts

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.0/wp-includes/template-functions-links.php

    r5080 r5100  
    9090    $id = (int) $id; 
    9191    if ( !$id ) 
    92         $id = $post->ID; 
     92        $id = (int) $post->ID; 
    9393 
    9494    $pagestruct = $wp_rewrite->get_page_permastruct(); 
     
    111111 
    112112    if (! $id) { 
    113         $id = $post->ID; 
     113        $id = (int) $post->ID; 
    114114    } 
    115115