Changeset 7110 for branches/1.1/bb-includes/functions.bb-template.php
- Timestamp:
- 08/03/2020 01:20:09 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1/bb-includes/functions.bb-template.php
r6156 r7110 3258 3258 3259 3259 foreach ( (array) $tags as $tag ) { 3260 $counts {$tag->raw_tag}= $tag->tag_count;3261 $taglinks {$tag->raw_tag}= bb_get_tag_link( $tag );3260 $counts[$tag->raw_tag] = $tag->tag_count; 3261 $taglinks[$tag->raw_tag] = bb_get_tag_link( $tag ); 3262 3262 } 3263 3263 … … 3276 3276 3277 3277 foreach ( $counts as $tag => $count ) { 3278 $taglink = esc_attr($taglinks {$tag});3278 $taglink = esc_attr($taglinks[$tag]); 3279 3279 $tag = str_replace(' ', ' ', esc_html( $tag )); 3280 3280 $fontsize = round( $smallest + ( ( $count - $min_count ) * $fontstep ), 1 );
Note: See TracChangeset
for help on using the changeset viewer.