Project:Taxonomy Block
Version:master
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:closed (fixed)

Issue Summary

I know its a small issue, but it breaks up the list and its an easy problem to solve.

Right now, the code (line 306) is:
$output .= '<br/>' . $teaser;

which will add a <br/> even when the teaser isn't there.

A simple workaround would be:

if($teaser){
      $output .= '<br/>' . $teaser;
}

Comments

#1

Status:active» reviewed & tested by the community

yeah this is a simple enough fix. i'll commit this patch once there's a 4.7 branch to commit to.

#2

forgot the patch ;)

AttachmentSize
taxonomy_block_60615.patch 736 bytes

#3

Status:reviewed & tested by the community» fixed

this has been committed to 4.7

#4

Status:fixed» closed (fixed)
nobody click here