Opened 17 years ago
Closed 16 years ago
#1508 closed defect (bug) (fixed)
Reference to unknown array in function bp_group_list_mods
| Reported by: | tobiaslohr | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | 1.2.4 |
| Component: | Core | Version: | |
| Severity: | Keywords: | ||
| Cc: |
Description
In the template tag function "bp_group_list_mods" there is a reference to an unknown array "admins" when calculating the number of iterations in the for-loop.
Line 692 in file bp-groups-templatetags.php:
<?php for ( $i = 0; $i < count($admins); $i++ ) { ?>
actually must be
<?php for ( $i = 0; $i < count($group_mods); $i++ ) { ?>
Change History (2)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
No longer an issue.