diff options
author | Dan McGee <dan@archlinux.org> | 2010-05-17 10:51:44 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-05-17 10:51:44 -0500 |
commit | 04f5b3e2f7423b412768b1f6e336bfd818098de9 (patch) | |
tree | 4e00e574603b6be23d1a06635819ae4801522de0 /templates | |
parent | 8116500afca190d6d87292ec08a9dff18a1bb261 (diff) |
Fix display issues in IE/Chrome on developer list pagerelease_2010-05-17
They did not like the self-closing anchor tag, causing the link style to get
applied to the entire profile section. Not too cool. Gecko didn't seem to
have a problem with it but IE and Chrome (all Webkit?) did.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/public/developer_list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/public/developer_list.html b/templates/public/developer_list.html index 9a63a6dc..ff38b26a 100644 --- a/templates/public/developer_list.html +++ b/templates/public/developer_list.html @@ -11,7 +11,7 @@ <td class="devpic"> <img src="{{ prof.picture.url }}" height="175" width="175" style="border:1px solid black" alt="Image for {{ prof.alias }}"/> </td><td> - <a name="{{ dev.username }}" /> + <a name="{{ dev.username }}"></a> <table class="deventry" cellspacing="5"> <tr> <th>Name:</th> |