Changeset 4896 for trunk/includes/replies/template-tags.php
- Timestamp:
- 05/11/2013 06:10:20 AM (13 years ago)
- File:
-
- 1 edited
-
trunk/includes/replies/template-tags.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/replies/template-tags.php
r4866 r4896 101 101 102 102 // Join post statuses together 103 $default['post_status'] = join( ',', $post_statuses );103 $default['post_status'] = implode( ',', $post_statuses ); 104 104 105 105 // Lean on the 'perm' query var value of 'readable' to provide statuses … … 1112 1112 } 1113 1113 1114 $author_link = join( $r['sep'], $author_link );1114 $author_link = implode( $r['sep'], $author_link ); 1115 1115 1116 1116 // No links if anonymous 1117 1117 } else { 1118 $author_link = join( $r['sep'], $author_links );1118 $author_link = implode( $r['sep'], $author_links ); 1119 1119 } 1120 1120 … … 1972 1972 $classes = get_post_class( $classes, $reply_id ); 1973 1973 $classes = apply_filters( 'bbp_get_reply_class', $classes, $reply_id ); 1974 $retval = 'class="' . join( ' ', $classes ) . '"';1974 $retval = 'class="' . implode( ' ', $classes ) . '"'; 1975 1975 1976 1976 return $retval;
Note: See TracChangeset
for help on using the changeset viewer.