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/users/template-tags.php

    r4840 r4896  
    14401440                    $author_link[] = sprintf( '<a href="%1$s"%2$s>%3$s</a>', $author_url, $link_title, $link_text );
    14411441                }
    1442                 $author_link = join( '&nbsp;', $author_link );
     1442                $author_link = implode( '&nbsp;', $author_link );
    14431443
    14441444            // No links if anonymous
    14451445            } else {
    1446                 $author_link = join( '&nbsp;', $author_links );
     1446                $author_link = implode( '&nbsp;', $author_links );
    14471447            }
    14481448
Note: See TracChangeset for help on using the changeset viewer.