a small not Bug but a Code Correction
-
Hi
I was just going through the code and I found a small code Correction, not any major Bug.
In the file – buddypress/bp-core/admin/bp-core-admin-tools.php
In function bp_core_admin_debug_informationIn code –
'value' => implode( wp_list_pluck( $active_components, 'title' ), ', ' ),
Should be –
'value' => implode( ', ', wp_list_pluck( $active_components, 'title' ) ),
implode(): Passing glue string before array….
Hope it helps you.
- You must be logged in to reply to this topic.