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

git-svn-id: https://develop.svn.wordpress.org/trunk@5595 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2007-05-29 23:06:46 +00:00
parent 479ecdf5f8
commit 7480586494
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;
}