Respect the mode. Props: ringmaster. http://mosquito.wordpress.org/view.php?id=804
git-svn-id: https://develop.svn.wordpress.org/trunk@2225 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
dc1767afe4
commit
cac9401e0b
@ -64,7 +64,12 @@ function wp_get_single_post($postid = 0, $mode = OBJECT) {
|
||||
$result = $wpdb->get_row($sql, $mode);
|
||||
|
||||
// Set categories
|
||||
$result['post_category'] = wp_get_post_cats('',$postid);
|
||||
if($mode == OBJECT) {
|
||||
$result->post_category = wp_get_post_cats('',$postid);
|
||||
}
|
||||
else {
|
||||
$result['post_category'] = wp_get_post_cats('',$postid);
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user