Posted by s0l3x on April 27, 2006 at 4:41am
| 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
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 ;)
#3
this has been committed to 4.7
#4