Closed (fixed)
Project:
Views Bonus Pack
Version:
5.x-1.x-dev
Component:
Bonus Panel Views
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
6 Feb 2008 at 23:45 UTC
Updated:
24 May 2008 at 14:51 UTC
_taxonomy_depth() used in views_bonus_panels_threecol_term.module is not present in Drupal 5, leading to undefined function errors, function is only used to draw the '--' depth indicator and can be replaced with str_repeat()
diff -r1.2.2.4 views_bonus_panels_threecol_term.module
22c22
< $prefix = _taxonomy_depth($term->depth-1). ' ';
---
> $prefix = str_repeat('--', $term->depth-1). ' ';
| Comment | File | Size | Author |
|---|---|---|---|
| views_bonus_panels_threecol_term.patch | 443 bytes | alaa |
Comments
Comment #1
dmitrig01 commentedCommitted.
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.