Add missing taxonomy argument. Props nbachiyski. fixes #4362 see #4189

git-svn-id: http://svn.automattic.com/wordpress/trunk@5595 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2007-05-29 23:06:46 +00:00
parent 083dfb059b
commit e2a9845a94
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ function get_category_by_path($category_path, $full_match = true, $output = OBJE
$path = '/' . $leaf_path;
$curcategory = $category;
while ( ($curcategory->parent != 0) && ($curcategory->parent != $curcategory->term_id) ) {
$curcategory = get_term($curcategory->parent);
$curcategory = get_term($curcategory->parent, 'category');
$path = '/' . $curcategory->slug . $path;
}