diff options
Diffstat (limited to 'modules/taxonomy/taxonomy.pages.inc')
-rw-r--r-- | modules/taxonomy/taxonomy.pages.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.pages.inc b/modules/taxonomy/taxonomy.pages.inc index e72c8a207..402fa2c77 100644 --- a/modules/taxonomy/taxonomy.pages.inc +++ b/modules/taxonomy/taxonomy.pages.inc @@ -31,7 +31,9 @@ function taxonomy_term_page($terms, $depth = 0, $op = 'page') { switch ($op) { case 'page': // Build breadcrumb based on first hierarchy of first term: - $current->tid = $tids[0]; + $current = (object) array( + 'tid' => $tids[0], + ); $breadcrumb = array(); while ($parents = taxonomy_get_parents($current->tid)) { $current = array_shift($parents); |