Skip to:
Content

bbPress.org


Ignore:
Timestamp:
05/11/2013 06:10:20 AM (13 years ago)
Author:
johnjamesjacoby
Message:

Use implode() instead of join() through-out project. See #2331.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/forums/template-tags.php

    r4877 r4896  
    17781778        // Filter the results
    17791779        $classes   = apply_filters( 'bbp_get_forum_class', $classes, $forum_id );
    1780         $retval    = 'class="' . join( ' ', $classes ) . '"';
     1780        $retval    = 'class="' . implode( ' ', $classes ) . '"';
    17811781
    17821782        return $retval;
Note: See TracChangeset for help on using the changeset viewer.