﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
6339,get_avatar produces invalid XHTML for default avatar,Otto42,anonymous,"Trunk. pluggable.php, line 1253 or thereabouts.

{{{
$avatar = ""<img alt='' src='{$default}' class='avatar avatar-{$size} avatar-default' height='{$size}' width='{$size}'>"";
}}}

That's an unclosed image tag. It should be:

{{{
$avatar = ""<img alt='' src='{$default}' class='avatar avatar-{$size} avatar-default' height='{$size}' width='{$size}' />"";
}}}

Tagging this as high/major because it makes default out-of-the-box installs fail validation. Also, it's a 2 character fix.",defect (bug),closed,high,2.5,General,2.5,major,fixed,,
