<br/> even without teaser
s0l3x - April 27, 2006 - 04:41
| Project: | Taxonomy Block |
| Version: | HEAD |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Description
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;
}
#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