#3314 closed task (blessed) (fixed)
Undefined index: echo in includes/forums/template.php on line 791
Reported by: | Toengel | Owned by: | johnjamesjacoby |
---|---|---|---|
Milestone: | 2.6.4 | Priority: | normal |
Severity: | normal | Version: | 2.6.3 |
Component: | Tools - Code Improvements | Keywords: | commit |
Cc: |
Description
Hi,
I have a lot of these Notices in my WordPress log. Would be nice, if this can be "fixed" in some way.
Thanks in advance.
Change History (3)
Note: See
TracTickets for help on using
tickets.
Have you customized your
bbp_list_forums()
function?$r['echo']
is always defined in the default parameters array, hence it should always be defined in the local scope.Or if you're using the
bbp_after_list_forums_parse_args
filter and forgetting theecho
parameter in your override, you will see this notice.We should help keep this notice silent either way, but hopefully the above helps you narrow down why this is happening for you and no one else.