#843 closed defect (bug) (fixed)
typo bug in function bb_cache_users
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | 0.9 | Priority: | high |
| Severity: | normal | Version: | 0.7.2 |
| Component: | Back-end | Keywords: | |
| Cc: |
Description
There is a typo bug in function bb_cache_users found in bb-includes/functions.php
which has existed since the first public bbPress release.
unset($ids[i]);
should be
unset($ids[$i]);
note the (lack of) $ on the i
This causes the cache to always miss on users since the search value never gets unset.
(Typo may exist in other similar functions, have not checked yet.)
Note: See
TracTickets for help on using
tickets.
(In [1384]) bb_cahce_users() typo - Fixes #843 - props _ck_