Skip to:
Content
Pages
Categories
Search
Top
Bottom

a small not Bug but a Code Correction


  • iosoft
    Participant

    @iosoft

    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_information

    In 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.
Skip to toolbar